Rename the C function to create a SLPVectorizerPass to something sane and expose it in the header file.

llvm-svn: 179272
This commit is contained in:
Benjamin Kramer
2013-04-11 11:36:36 +00:00
parent fd7f924016
commit c86fdf12e8
3 changed files with 8 additions and 4 deletions

View File

@@ -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());
}