diff options
author | Michael Kruse <llvm@meinersbur.de> | 2017-05-04 15:55:54 +0000 |
---|---|---|
committer | Michael Kruse <llvm@meinersbur.de> | 2017-05-04 15:55:54 +0000 |
commit | 704c03e03b16ec84b1be0134927495e0d0fe2493 (patch) | |
tree | 5243933831ad46743c4e194abece673a864b5f2e | |
parent | d50571b24443f19c4e762a5a4b044ee74c8ddf47 (diff) | |
download | bcm5719-llvm-704c03e03b16ec84b1be0134927495e0d0fe2493.tar.gz bcm5719-llvm-704c03e03b16ec84b1be0134927495e0d0fe2493.zip |
[ScopBuilder] Add missing semicolon after LLVM_FALLTHROUGH.
It was forgotten in r302157.
llvm-svn: 302163
-rw-r--r-- | polly/lib/Analysis/ScopBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Analysis/ScopBuilder.cpp b/polly/lib/Analysis/ScopBuilder.cpp index 27620613699..f89b83e4f36 100644 --- a/polly/lib/Analysis/ScopBuilder.cpp +++ b/polly/lib/Analysis/ScopBuilder.cpp @@ -571,7 +571,7 @@ void ScopBuilder::ensureValueRead(Value *V, BasicBlock *UserBB) { if (!ModelReadOnlyScalars) break; - LLVM_FALLTHROUGH + LLVM_FALLTHROUGH; case VirtualUse::Inter: // Do not create another MemoryAccess for reloading the value if one already |