Use FileCheck instead of grep. Change by Sonam.
authorSuyog Sarda <suyog.sarda@samsung.com>
Thu, 27 Nov 2014 10:57:24 +0000 (10:57 +0000)
committerSuyog Sarda <suyog.sarda@samsung.com>
Thu, 27 Nov 2014 10:57:24 +0000 (10:57 +0000)
Differential Revision: http://reviews.llvm.org/D6432

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222876 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/not-fcmp.ll
test/Transforms/InstCombine/not.ll

index ad01a6bdf1bc160a9fea1b684e992f80c95d71b0..9718e0b905fca6a424e7fdc06516ffb763eb5743 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt < %s -instcombine -S | grep "fcmp uge"
+; RUN: opt < %s -instcombine -S | FileCheck %s
 ; PR1570
 
 define i1 @f(float %X, float %Y) {
@@ -6,5 +6,8 @@ entry:
         %tmp3 = fcmp olt float %X, %Y           ; <i1> [#uses=1]
         %toBoolnot5 = xor i1 %tmp3, true                ; <i1> [#uses=1]
         ret i1 %toBoolnot5
+; CHECK-LABEL: @f(
+; CHECK-NEXT: entry:
+; CHECK-NEXT: %toBoolnot5 = fcmp uge float %X, %Y
+; CHECK-NEXT: ret i1 %toBoolnot5
 }
-
index 4a8825b15c4e15102d3f1ba6bfbc94e7eb493c81..4012ce1ea4ba348c232a5511c71fa8c129626285 100644 (file)
@@ -1,7 +1,8 @@
 ; This test makes sure that these instructions are properly eliminated.
 ;
 
-; RUN: opt < %s -instcombine -S | not grep xor
+; RUN: opt < %s -instcombine -S | FileCheck %s
+; CHECK-NOT: xor
 
 define i32 @test1(i32 %A) {
         %B = xor i32 %A, -1             ; <i32> [#uses=1]
@@ -51,4 +52,3 @@ entry:
        %retval67 = zext i1 %tmp3 to i8         ; <i8> [#uses=1]
        ret i8 %retval67
 }
-