blob: 3da6bfa4bc54a25d6294318eb3e131240c195be1 [file] [log] [blame]
Wang Nan00b86692016-11-26 07:03:34 +00001#include "clang.h"
2#include "clang-c.h"
3#include "llvm/IR/Function.h"
4#include "llvm/IR/LLVMContext.h"
5
6class perf_clang_scope {
7public:
8 explicit perf_clang_scope() {perf_clang__init();}
9 ~perf_clang_scope() {perf_clang__cleanup();}
10};
11
12extern "C" {
13
14int test__clang_to_IR(void)
15{
16 perf_clang_scope _scope;
17
18 std::unique_ptr<llvm::Module> M =
19 perf::getModuleFromSource("perf-test.c",
20 "int myfunc(void) {return 1;}");
21
22 if (!M)
23 return -1;
24
25 for (llvm::Function& F : *M)
26 if (F.getName() == "myfunc")
27 return 0;
28 return -1;
29}
30
31}