diff options
Diffstat (limited to 'test/CodeGen/ARM/fpcmp.ll')
-rw-r--r-- | test/CodeGen/ARM/fpcmp.ll | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/test/CodeGen/ARM/fpcmp.ll b/test/CodeGen/ARM/fpcmp.ll index 16e9a1b140..61dc489356 100644 --- a/test/CodeGen/ARM/fpcmp.ll +++ b/test/CodeGen/ARM/fpcmp.ll @@ -4,6 +4,7 @@ ; RUN: llvm-as < %s | llc -march=arm | grep movgt && ; RUN: llvm-as < %s | llc -march=arm | grep movge && ; RUN: llvm-as < %s | llc -march=arm | grep movls && +; RUN: llvm-as < %s | llc -march=arm | grep movne && ; RUN: llvm-as < %s | llc -march=arm | grep fcmps && ; RUN: llvm-as < %s | llc -march=arm | grep fcmpd @@ -55,10 +56,3 @@ entry: %tmp = cast bool %tmp to int ; <int> [#uses=1] ret int %tmp } - -int %g2(double %a) { -entry: - %tmp = setne double %a, 1.000000e+00 ; <bool> [#uses=1] - %tmp = cast bool %tmp to int ; <int> [#uses=1] - ret int %tmp -} |