[llvm] r211717 - Fix indentation.

Juergen Ributzka juergen at apple.com
Wed Jun 25 09:49:37 PDT 2014


Author: ributzka
Date: Wed Jun 25 11:49:37 2014
New Revision: 211717

URL: http://llvm.org/viewvc/llvm-project?rev=211717&view=rev
Log:
Fix indentation.

Modified:
    llvm/trunk/lib/Target/X86/X86FastISel.cpp

Modified: llvm/trunk/lib/Target/X86/X86FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86FastISel.cpp?rev=211717&r1=211716&r2=211717&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86FastISel.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86FastISel.cpp Wed Jun 25 11:49:37 2014
@@ -1814,13 +1814,13 @@ bool X86FastISel::X86FastEmitCMoveSelect
     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.





More information about the llvm-commits mailing list