brintos

brintos / llvm-project-archived public Read only

0
0
Text · 469 B · 52243f2 Raw
9 lines · c
1// NOLINT: llvm-header-guard2// __register_frame() is used with dynamically generated code to register the3// FDE for a generated (JIT) code. This header provides protypes, since the gcc4// version of unwind.h may not, so CMake can check if the corresponding symbols5// exist in the runtime.6extern void __register_frame(const void *fde);   // NOLINT7extern void __deregister_frame(const void *fde); // NOLINT8extern void __unw_add_dynamic_fde();             // NOLINT9