diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-10-08 18:39:24 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-10-08 18:39:24 -0700 |
commit | d9e3116be19165325ee9457bc207d47300075739 (patch) | |
tree | e4a6e5d4f652493a4e53fa758e7270b0ef0b5208 /test | |
parent | 73ab71f905d7b27bde4ba363ebbf72b76a5fabc6 (diff) | |
download | nasm-d9e3116be19165325ee9457bc207d47300075739.tar.gz nasm-d9e3116be19165325ee9457bc207d47300075739.tar.bz2 nasm-d9e3116be19165325ee9457bc207d47300075739.zip |
floatb.asm: fix broken testcase
50.40e9 as a 32-bit float is 0x513c1704
Diffstat (limited to 'test')
-rw-r--r-- | test/floatb.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/floatb.asm b/test/floatb.asm index b13c4d3..b73c75c 100644 --- a/test/floatb.asm +++ b/test/floatb.asm @@ -5,7 +5,7 @@ dd 0x5023e9ac ; Should be... dd 50.40e9 - dd 0x513bc130 ; Should be... + dd 0x513c1704 ; Should be... dq 1.4e23 dq 0x44bda56a4b0835c0 |