summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-07-27 17:43:21 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-07-27 17:43:21 +0000
commit38b79e8fbcca222440840f2bc35097f5279c7e7c (patch)
treebbc733275db836eaaad9eeae2c306b8f5102bca6 /llvm/lib/Transforms/Scalar/InstructionCombining.cpp
parent9eaa879f49bae1e409fc0b4b77d1d2d5b74ca38f (diff)
downloadbcm5719-llvm-38b79e8fbcca222440840f2bc35097f5279c7e7c.tar.gz
bcm5719-llvm-38b79e8fbcca222440840f2bc35097f5279c7e7c.zip
Make the create...() functions for some of these passes return a FunctionPass *.
llvm-svn: 15276
Diffstat (limited to 'llvm/lib/Transforms/Scalar/InstructionCombining.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/InstructionCombining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
index f4910e4cc3d..3c46e2c554b 100644
--- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -3210,7 +3210,7 @@ bool InstCombiner::runOnFunction(Function &F) {
return Changed;
}
-Pass *llvm::createInstructionCombiningPass() {
+FunctionPass *llvm::createInstructionCombiningPass() {
return new InstCombiner();
}
OpenPOWER on IntegriCloud