llvm-for-llvmta/cmake/unwind.h

8 lines
410 B
C
Raw Permalink Normal View History

2022-04-25 10:02:23 +02:00
// NOLINT: llvm-header-guard
// __register_frame() is used with dynamically generated code to register the
// FDE for a generated (JIT) code. This header provides protypes, since the gcc
// version of unwind.h may not, so CMake can check if the corresponding symbols
// exist in the runtime.
extern void __register_frame(const void *fde); // NOLINT
extern void __deregister_frame(const void *fde); // NOLINT