Use FileCheck and expand the test a bit.
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 27 Nov 2013 19:22:14 +0000 (19:22 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 27 Nov 2013 19:22:14 +0000 (19:22 +0000)
In particular, check the name of the symbol we are putting in the constant pool.

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

test/CodeGen/Thumb/unord.ll

index 39458ae7b7bceff68674f9e35b5313530f67a6d0..41a002efd651a5207aa0b42b6f9e6478290dc3d1 100644 (file)
@@ -1,13 +1,20 @@
-; RUN: llc < %s -march=thumb | grep bne | count 1
-; RUN: llc < %s -march=thumb | grep beq | count 1
+; RUN: llc < %s -mtriple=thumb-apple-darwin | FileCheck %s
 
 define i32 @f1(float %X, float %Y) {
+; CHECK-LABEL _f1:
+; CHECK: bne
+; CHECK: .data_region
+; CHECK: .long   ___unordsf2
        %tmp = fcmp uno float %X, %Y
        %retval = select i1 %tmp, i32 1, i32 -1
        ret i32 %retval
 }
 
 define i32 @f2(float %X, float %Y) {
+; CHECK-LABEL _f2:
+; CHECK: beq
+; CHECK: .data_region
+; CHECK: .long   ___unordsf2
        %tmp = fcmp ord float %X, %Y
        %retval = select i1 %tmp, i32 1, i32 -1
        ret i32 %retval