diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-10-19 14:19:52 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-10-19 14:19:52 -0700 |
commit | 513e3c1bd2ad6fc0fe1a6d1517b03d3a57c8dbe5 (patch) | |
tree | 00c582d5b502f87bba9ba8696195a05c2d484bc0 | |
parent | 3514ad0e6cc9d73d7fd4604bdd270e8cc78a06d4 (diff) | |
download | nasm-513e3c1bd2ad6fc0fe1a6d1517b03d3a57c8dbe5.tar.gz nasm-513e3c1bd2ad6fc0fe1a6d1517b03d3a57c8dbe5.tar.bz2 nasm-513e3c1bd2ad6fc0fe1a6d1517b03d3a57c8dbe5.zip |
uscore.asm: Fix test case
"$1e+16" was missing, instead "$1e16" was duplicated
-rw-r--r-- | test/uscore.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/uscore.asm b/test/uscore.asm index 2bc99c2..b82b7ce 100644 --- a/test/uscore.asm +++ b/test/uscore.asm @@ -4,7 +4,7 @@ dd 1e16h ; NOT a floating-point number! dd 1e16_h ; NOT a floating-point number! dd $1e16 ; NOT a floating-point number! - dd $1e16 ; NOT a floating-point number! + dd $1e+16 ; NOT a floating-point number! dd 1e16 ; THIS is a floating-point number! dd 1e+16 dd 1.e+16 |