summaryrefslogtreecommitdiff
path: root/tools/perf/util/c++/clang-c.h
blob: 22b3936d1f09d025ac87eef1f807f4078cd65edd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef PERF_UTIL_CLANG_C_H
#define PERF_UTIL_CLANG_C_H

#ifdef __cplusplus
extern "C" {
#endif

extern void perf_clang__init(void);
extern void perf_clang__cleanup(void);

extern int test__clang_to_IR(void);
extern int test__clang_to_obj(void);

#ifdef __cplusplus
}
#endif
#endif