diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2016-07-01 23:26:54 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2016-07-01 23:26:54 +0000 |
commit | 3add3a40a42cc66cd4c918706b3e319e5a5ae5f0 (patch) | |
tree | fe30e487c1b131aa2df5b84f21d5c4732df140f1 /llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp | |
parent | accddacb708e1925ac14417f21ce586f87b7bd4e (diff) | |
download | bcm5719-llvm-3add3a40a42cc66cd4c918706b3e319e5a5ae5f0.tar.gz bcm5719-llvm-3add3a40a42cc66cd4c918706b3e319e5a5ae5f0.zip |
LoadStoreVectorizer: Fix warning about extra semicolon
llvm-svn: 274406
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp b/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp index 2f8a470b4c0..ec1f8095eca 100644 --- a/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp +++ b/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp @@ -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; |