aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb/unord.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Thumb/unord.ll')
-rw-r--r--test/CodeGen/Thumb/unord.ll21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/CodeGen/Thumb/unord.ll b/test/CodeGen/Thumb/unord.ll
deleted file mode 100644
index 3cf9ebfa0373..000000000000
--- a/test/CodeGen/Thumb/unord.ll
+++ /dev/null
@@ -1,21 +0,0 @@
-; 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
-}