summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-01-07 05:41:39 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-01-07 05:41:39 +0000
commit835ca25de62beba45ea906a7b67c85fdc6237ccf (patch)
treea3a47ec396bade382d91542c3caa7da01268a9a3 /include/llvm/Transforms
parent6ac95f967930ad9bad38363f8b79efb67bc1d58c (diff)
Fix return type
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19314 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/Instrumentation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Instrumentation.h b/include/llvm/Transforms/Instrumentation.h
index abd34d12974..869f9d05d6c 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();