Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFangrui Song <i@maskray.me>2022-08-09 07:06:52 +0300
committerFangrui Song <i@maskray.me>2022-08-09 07:06:52 +0300
commit0972a390b9c74cd994ad0250cf392aecb67502a3 (patch)
treedbfde26a6814965adbe72973f4b840bee78e8f43 /polly/lib/Support
parentfc63c0542c8d6e5be07e059d03a73ae77f5155aa (diff)
LLVM_FALLTHROUGH => [[fallthrough]]. NFC
Diffstat (limited to 'polly/lib/Support')
-rw-r--r--polly/lib/Support/VirtualInstruction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Support/VirtualInstruction.cpp b/polly/lib/Support/VirtualInstruction.cpp
index 07f8ff54324b..e570d8d54649 100644
--- a/polly/lib/Support/VirtualInstruction.cpp
+++ b/polly/lib/Support/VirtualInstruction.cpp
@@ -300,7 +300,7 @@ static void walkReachable(Scop *S, LoopInfo *LI,
// enabled.
if (!VUse.getMemoryAccess())
break;
- LLVM_FALLTHROUGH;
+ [[fallthrough]];
case VirtualUse::Inter:
assert(VUse.getMemoryAccess());
WorklistAccs.push_back(VUse.getMemoryAccess());