Use FileCheck and expand the test a bit.
In particular, check the name of the symbol we are putting in the constant pool. llvm-svn: 195865
This commit is contained in:
parent
17046b8506
commit
745bd85c6a
|
|
@ -1,13 +1,20 @@
|
||||||
; RUN: llc < %s -march=thumb | grep bne | count 1
|
; RUN: llc < %s -mtriple=thumb-apple-darwin | FileCheck %s
|
||||||
; RUN: llc < %s -march=thumb | grep beq | count 1
|
|
||||||
|
|
||||||
define i32 @f1(float %X, float %Y) {
|
define i32 @f1(float %X, float %Y) {
|
||||||
|
; CHECK-LABEL _f1:
|
||||||
|
; CHECK: bne
|
||||||
|
; CHECK: .data_region
|
||||||
|
; CHECK: .long ___unordsf2
|
||||||
%tmp = fcmp uno float %X, %Y
|
%tmp = fcmp uno float %X, %Y
|
||||||
%retval = select i1 %tmp, i32 1, i32 -1
|
%retval = select i1 %tmp, i32 1, i32 -1
|
||||||
ret i32 %retval
|
ret i32 %retval
|
||||||
}
|
}
|
||||||
|
|
||||||
define i32 @f2(float %X, float %Y) {
|
define i32 @f2(float %X, float %Y) {
|
||||||
|
; CHECK-LABEL _f2:
|
||||||
|
; CHECK: beq
|
||||||
|
; CHECK: .data_region
|
||||||
|
; CHECK: .long ___unordsf2
|
||||||
%tmp = fcmp ord float %X, %Y
|
%tmp = fcmp ord float %X, %Y
|
||||||
%retval = select i1 %tmp, i32 1, i32 -1
|
%retval = select i1 %tmp, i32 1, i32 -1
|
||||||
ret i32 %retval
|
ret i32 %retval
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue