[WebAssembly] Use the new offset syntax for memory operands in inline asm.
[oota-llvm.git] / test / CodeGen / Thumb / unord.ll
index 4202d269c0e7e1a3893e43c940c24a527085413b..3cf9ebfa0373c4863a8a6712514bb9bef980cac5 100644 (file)
@@ -1,13 +1,20 @@
-; RUN: llvm-as < %s | llc -march=thumb | grep bne | count 1
-; RUN: llvm-as < %s | llc -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