mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
8 lines
410 B
C
8 lines
410 B
C
|
// 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
|