summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Vectorize/Vectorize.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-04-11 11:36:36 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-04-11 11:36:36 +0000
commitc86fdf12e85215777cfdc1d5074e73b0118fa42f (patch)
treea0dd289b673aec5a15712e9385c60e85ced21daf /llvm/lib/Transforms/Vectorize/Vectorize.cpp
parentfd7f924016e3242f055729bfa35438e420412115 (diff)
downloadbcm5719-llvm-c86fdf12e85215777cfdc1d5074e73b0118fa42f.tar.gz
bcm5719-llvm-c86fdf12e85215777cfdc1d5074e73b0118fa42f.zip
Rename the C function to create a SLPVectorizerPass to something sane and expose it in the header file.
llvm-svn: 179272
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/Vectorize.cpp')
-rw-r--r--llvm/lib/Transforms/Vectorize/Vectorize.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Vectorize/Vectorize.cpp b/llvm/lib/Transforms/Vectorize/Vectorize.cpp
index 3aff6366a6c..a927fe14517 100644
--- a/llvm/lib/Transforms/Vectorize/Vectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/Vectorize.cpp
@@ -1,4 +1,4 @@
- //===-- Vectorize.cpp -----------------------------------------------------===//
+//===-- Vectorize.cpp -----------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
@@ -43,6 +43,6 @@ void LLVMAddLoopVectorizePass(LLVMPassManagerRef PM) {
unwrap(PM)->add(createLoopVectorizePass());
}
-void LLVMAddLoopRollerPass(LLVMPassManagerRef PM) {
+void LLVMAddSLPVectorizePass(LLVMPassManagerRef PM) {
unwrap(PM)->add(createSLPVectorizerPass());
}
OpenPOWER on IntegriCloud