diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-04-11 11:36:36 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-04-11 11:36:36 +0000 |
commit | c86fdf12e85215777cfdc1d5074e73b0118fa42f (patch) | |
tree | a0dd289b673aec5a15712e9385c60e85ced21daf /llvm/lib/Transforms/Vectorize/Vectorize.cpp | |
parent | fd7f924016e3242f055729bfa35438e420412115 (diff) | |
download | bcm5719-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.cpp | 4 |
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()); } |