diff options
author | Fangrui Song <i@maskray.me> | 2024-04-25 17:50:59 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2024-04-25 17:50:59 -0700 |
commit | 5a12f2867a167bbe11099150f3cb6b6cb77d767c (patch) | |
tree | a605ac442f938931cd50cfa5e78c6ef6f7b942a1 /llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | 593f6fdcb4bb3ff81ba4e6f89d7b16540c4b9eaf (diff) | |
download | llvm-5a12f2867a167bbe11099150f3cb6b6cb77d767c.zip llvm-5a12f2867a167bbe11099150f3cb6b6cb77d767c.tar.gz llvm-5a12f2867a167bbe11099150f3cb6b6cb77d767c.tar.bz2 |
LLVM_FALLTHROUGH => [[fallthrough]]. NFC
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index aefedd0..ef9f783 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -1424,7 +1424,7 @@ bool FastISel::selectIntrinsicCall(const IntrinsicInst *II) { // happened (such as an optimised function being always-inlined into an // optnone function). We will not be using the extra information in the // dbg.assign in that case, just use its dbg.value fields. - LLVM_FALLTHROUGH; + [[fallthrough]]; case Intrinsic::dbg_value: { // This form of DBG_VALUE is target-independent. const DbgValueInst *DI = cast<DbgValueInst>(II); |