Fix indentation.

llvm-svn: 211717
This commit is contained in:
Juergen Ributzka 2014-06-25 16:49:37 +00:00
parent 702eefed9a
commit 9029bda8a3
1 changed files with 7 additions and 7 deletions

View File

@ -1814,13 +1814,13 @@ bool X86FastISel::X86FastEmitCMoveSelect(const Instruction *I) {
bool FoldIntrinsic = false;
if (const auto *II = dyn_cast<IntrinsicInst>(EV->getAggregateOperand())) {
switch (II->getIntrinsicID()) {
default: break;
case Intrinsic::sadd_with_overflow:
case Intrinsic::uadd_with_overflow:
case Intrinsic::ssub_with_overflow:
case Intrinsic::usub_with_overflow:
case Intrinsic::smul_with_overflow:
case Intrinsic::umul_with_overflow: FoldIntrinsic = true; break;
default: break;
case Intrinsic::sadd_with_overflow:
case Intrinsic::uadd_with_overflow:
case Intrinsic::ssub_with_overflow:
case Intrinsic::usub_with_overflow:
case Intrinsic::smul_with_overflow:
case Intrinsic::umul_with_overflow: FoldIntrinsic = true; break;
}
// Check if both instructions are in the same basic block.