diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-07 05:41:39 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-07 05:41:39 +0000 |
commit | 835ca25de62beba45ea906a7b67c85fdc6237ccf (patch) | |
tree | a3a47ec396bade382d91542c3caa7da01268a9a3 /include | |
parent | 6ac95f967930ad9bad38363f8b79efb67bc1d58c (diff) | |
download | external_llvm-835ca25de62beba45ea906a7b67c85fdc6237ccf.zip external_llvm-835ca25de62beba45ea906a7b67c85fdc6237ccf.tar.gz external_llvm-835ca25de62beba45ea906a7b67c85fdc6237ccf.tar.bz2 |
Fix return type
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19314 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Transforms/Instrumentation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Instrumentation.h b/include/llvm/Transforms/Instrumentation.h index abd34d1..869f9d0 100644 --- a/include/llvm/Transforms/Instrumentation.h +++ b/include/llvm/Transforms/Instrumentation.h @@ -20,7 +20,7 @@ class ModulePass; class FunctionPass; // Reoptimizer support pass: add instrumentation calls to back-edges of loops -ModulePass *createLoopInstrumentationPass (); +FunctionPass *createLoopInstrumentationPass (); // Reoptimizer support pass: combine multiple back-edges w/ same target into one FunctionPass *createCombineBranchesPass(); |