1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #pragma once
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wunused-parameter"
- #endif
- #ifndef LLVM_IR_BUILTINGCS_H
- #define LLVM_IR_BUILTINGCS_H
- namespace llvm {
- void linkAllBuiltinGCs();
- void linkOcamlGCPrinter();
- void linkErlangGCPrinter();
- }
- #endif
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif
|