[PATCH] D55531: AsmParser: test .double NaN
JF Bastien via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 17 10:57:36 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL349376: AsmParser: test .double NaN and .double inf (authored by jfb, committed by ).
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55531/new/
https://reviews.llvm.org/D55531
Files:
llvm/trunk/test/MC/AsmParser/floating-literals.s
Index: llvm/trunk/test/MC/AsmParser/floating-literals.s
===================================================================
--- llvm/trunk/test/MC/AsmParser/floating-literals.s
+++ llvm/trunk/test/MC/AsmParser/floating-literals.s
@@ -10,12 +10,21 @@
# CHECK: .long 2139095040
.single InFinIty
+# CHECK: .quad 9218868437227405312
+.double infinity
+
# CHECK: .long 4286578688
.single -iNf
+# CHECK: .quad -4503599627370496
+.double -inf
+
# CHECK: .long 2147483647
.single nAN
+# CHECK: .quad 9223372036854775807
+.double NaN
+
# CHECK: .long 1067928519
.float 1.307
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55531.178494.patch
Type: text/x-patch
Size: 591 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181217/bb7462cb/attachment.bin>
More information about the llvm-commits
mailing list