diff options
author | Craig Topper <craig.topper@gmail.com> | 2017-06-04 08:21:51 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2017-06-04 08:21:51 +0000 |
commit | 0dd29e2256bea676faa3db5ec143e29b3a7c8d54 (patch) | |
tree | af6504a50a436f0999f02fd60cda98c8b2901ec8 /llvm/lib/Analysis/ConstantFolding.cpp | |
parent | fe9ad82e440be345e3a54991b6c646b43c4a0a32 (diff) | |
download | bcm5719-llvm-0dd29e2256bea676faa3db5ec143e29b3a7c8d54.tar.gz bcm5719-llvm-0dd29e2256bea676faa3db5ec143e29b3a7c8d54.zip |
[ConstantFolding][X86] Replace an LLVM_FALLTHROUGH with a break because it really shouldn't fallthrough.
This is actually NFC because the next case starts with the same if statement as this case did. So the result will be the same and it will fallthrough to the end of the switch. But there's no reason to rely on that so we should just break.
llvm-svn: 304680
Diffstat (limited to 'llvm/lib/Analysis/ConstantFolding.cpp')
-rw-r--r-- | llvm/lib/Analysis/ConstantFolding.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ConstantFolding.cpp b/llvm/lib/Analysis/ConstantFolding.cpp index b8e80eaedd9..4267ed24e9f 100644 --- a/llvm/lib/Analysis/ConstantFolding.cpp +++ b/llvm/lib/Analysis/ConstantFolding.cpp @@ -1815,7 +1815,7 @@ Constant *ConstantFoldScalarCall(StringRef Name, unsigned IntrinsicID, Type *Ty, dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), /*roundTowardZero=*/false, Ty); - LLVM_FALLTHROUGH; + break; case Intrinsic::x86_sse_cvttss2si: case Intrinsic::x86_sse_cvttss2si64: case Intrinsic::x86_sse2_cvttsd2si: @@ -1824,6 +1824,7 @@ Constant *ConstantFoldScalarCall(StringRef Name, unsigned IntrinsicID, Type *Ty, dyn_cast_or_null<ConstantFP>(Op->getAggregateElement(0U))) return ConstantFoldSSEConvertToInt(FPOp->getValueAPF(), /*roundTowardZero=*/true, Ty); + break; } } |