clang-c.h 282 B

1234567891011121314151617
  1. #ifndef PERF_UTIL_CLANG_C_H
  2. #define PERF_UTIL_CLANG_C_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. extern void perf_clang__init(void);
  7. extern void perf_clang__cleanup(void);
  8. extern int test__clang_to_IR(void);
  9. extern int test__clang_to_obj(void);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif