Whitespace.
authorChad Rosier <mcrosier@apple.com>
Wed, 30 Nov 2011 01:59:59 +0000 (01:59 +0000)
committerChad Rosier <mcrosier@apple.com>
Wed, 30 Nov 2011 01:59:59 +0000 (01:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145470 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/InstCombine/InstCombineCasts.cpp

index 63065e3e2ef499c65cfc1fb670d89b8f51384e57..c78f6cd3c6860d0d6c28248b35786584622e4fce 100644 (file)
@@ -529,9 +529,7 @@ Instruction *InstCombiner::transformZExtICmp(ICmpInst *ICI, Instruction &CI,
 
       return ReplaceInstUsesWith(CI, In);
     }
-      
-      
-      
+
     // zext (X == 0) to i32 --> X^1      iff X has only the low bit set.
     // zext (X == 0) to i32 --> (X>>1)^1 iff X has only the 2nd bit set.
     // zext (X == 1) to i32 --> X        iff X has only the low bit set.