More code format fix from r224133, NFC
authorSteven Wu <stevenwu@apple.com>
Fri, 12 Dec 2014 18:48:37 +0000 (18:48 +0000)
committerSteven Wu <stevenwu@apple.com>
Fri, 12 Dec 2014 18:48:37 +0000 (18:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224140 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/InstCombine/InstCombineCasts.cpp

index 48f5ce8a295d5a6eddda0c95ce83bd9e2cbcc046..54157268e9f6252487f339cea5ddc3b6d529e7c6 100644 (file)
@@ -1269,9 +1269,8 @@ Instruction *InstCombiner::visitFPTrunc(FPTruncInst &CI) {
         // type of OpI doesn't enter into things at all.  We simply evaluate
         // in whichever source type is larger, then convert to the
         // destination type.
-        if (SrcWidth == OpWidth) {
+        if (SrcWidth == OpWidth)
           break;
-        }
         if (LHSWidth < SrcWidth)
           LHSOrig = Builder->CreateFPExt(LHSOrig, RHSOrig->getType());
         else if (RHSWidth <= SrcWidth)