mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-24 19:44:49 +00:00
LoadStoreVectorizer: Fix warning about extra semicolon
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274406 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4a37139fe5
commit
c1be1f5883
@ -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…
x
Reference in New Issue
Block a user