summaryrefslogtreecommitdiff
path: root/lib/Target
diff options
context:
space:
mode:
authorJuergen Ributzka <juergen@apple.com>2014-06-25 16:49:37 +0000
committerJuergen Ributzka <juergen@apple.com>2014-06-25 16:49:37 +0000
commit75f1d664b426f8d4892609f4c5f2e1308f6492d8 (patch)
tree56ae7f08a1b673c414f1865c08d67f3e3c23f6b7 /lib/Target
parent79142eebabb2780daf48495500eb8d2dd049a9ac (diff)
downloadllvm-75f1d664b426f8d4892609f4c5f2e1308f6492d8.tar.gz
llvm-75f1d664b426f8d4892609f4c5f2e1308f6492d8.tar.bz2
llvm-75f1d664b426f8d4892609f4c5f2e1308f6492d8.tar.xz
Fix indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211717 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/X86/X86FastISel.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp
index 17999a59aa..6ada3977f0 100644
--- a/lib/Target/X86/X86FastISel.cpp
+++ b/lib/Target/X86/X86FastISel.cpp
@@ -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.