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

#include "llvm/ADT/StringRef.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
#include <memory>
namespace perf {

using namespace llvm;

std::unique_ptr<Module>
getModuleFromSource(StringRef Name, StringRef Content);

}
#endif