diff options
Diffstat (limited to 'contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.h')
-rw-r--r-- | contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.h b/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.h index a76e357..09b2217 100644 --- a/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.h +++ b/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.h @@ -18,9 +18,10 @@ #define PROFILINGUTILS_H namespace llvm { + class BasicBlock; class Function; class GlobalValue; - class BasicBlock; + class Module; class PointerType; void InsertProfilingInitCall(Function *MainFn, const char *FnName, @@ -29,6 +30,7 @@ namespace llvm { void IncrementCounterInBlock(BasicBlock *BB, unsigned CounterNum, GlobalValue *CounterArray, bool beginning = true); + void InsertProfilingShutdownCall(Function *Callee, Module *Mod); } #endif |