Index: tests_lit/llvm2ice_tests/fpconst.pnacl.ll |
diff --git a/tests_lit/llvm2ice_tests/fpconst.pnacl.ll b/tests_lit/llvm2ice_tests/fpconst.pnacl.ll |
index 6ca41e44083c7ccb3ec9c9637b8b315e55fffae5..9bbfe3bade433e6791f280b1a69f32fc4ac0aa5e 100644 |
--- a/tests_lit/llvm2ice_tests/fpconst.pnacl.ll |
+++ b/tests_lit/llvm2ice_tests/fpconst.pnacl.ll |
@@ -6,6 +6,7 @@ |
; number in a reasonable number of digits". See |
; http://llvm.org/docs/LangRef.html#simple-constants . |
+; RUN: %llvm2ice -Om1 --verbose none %s | FileCheck %s |
; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s |
; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s |
; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ |
@@ -534,5 +535,16 @@ return: ; preds = %entry, %sw.bb65, %s |
ret double %retval.0 |
} |
+; The FP constant pool entries for each type are dumped in some |
+; implementation-dependent order. So for the purposes of lit, we just |
+; pick one value for each type, and make sure it appears exactly once. |
+ |
+; Check for float 0.5 |
+; CHECK: .long 0x3f000000 |
+; CHECK-NOT: .long 0x3f000000 |
+; Check for double 0.5 |
+; CHECK: .quad 0x3fe0000000000000 |
+; CHECK-NOT: .quad 0x3fe0000000000000 |
+ |
; ERRORS-NOT: ICE translation error |
; DUMP-NOT: SZ |