forked from OSchip/llvm-project
LoadStoreVectorizer: Fix warning about extra semicolon
llvm-svn: 274406
This commit is contained in:
parent
accddacb70
commit
3add3a40a4
|
@ -155,14 +155,14 @@ public:
|
|||
}
|
||||
|
||||
INITIALIZE_PASS_BEGIN(LoadStoreVectorizer, DEBUG_TYPE,
|
||||
"Vectorize load and Store instructions", false, false);
|
||||
"Vectorize load and Store instructions", false, false)
|
||||
INITIALIZE_PASS_DEPENDENCY(SCEVAAWrapperPass)
|
||||
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|
||||
INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
|
||||
INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass)
|
||||
INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
|
||||
INITIALIZE_PASS_END(LoadStoreVectorizer, DEBUG_TYPE,
|
||||
"Vectorize load and store instructions", false, false);
|
||||
"Vectorize load and store instructions", false, false)
|
||||
|
||||
char LoadStoreVectorizer::ID = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue