aboutsummaryrefslogtreecommitdiff
path: root/src/parseTools.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-04-11 14:26:38 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-04-11 14:26:38 -0700
commitda726c1f06076fa21f209eb57775574b26a644d1 (patch)
treebbb96a5a5b93fd206fd93765ba837cfb0e40423e /src/parseTools.js
parentca58e841497c9a3f0ee2af91b436000ef8afe8cc (diff)
improve warning about huge floats
Diffstat (limited to 'src/parseTools.js')
-rw-r--r--src/parseTools.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parseTools.js b/src/parseTools.js
index 6c3726b0..8ccf1f9f 100644
--- a/src/parseTools.js
+++ b/src/parseTools.js
@@ -499,7 +499,7 @@ function IEEEUnHex(stringy) {
while (stringy.length < 16) stringy = '0' + stringy;
if (FAKE_X86_FP80 && stringy.length > 16) {
stringy = stringy.substr(stringy.length-16, 16);
- warnOnce('.ll contains floating-point values with more than 64 bits. Faking values for them. If they are used, this will almost certainly fail!');
+ warnOnce('.ll contains floating-point values with more than 64 bits. Faking values for them. If they are used, this will almost certainly break horribly!');
}
assert(stringy.length === 16, 'Can only unhex 16-digit double numbers, nothing platform-specific'); // |long double| can cause x86_fp80 which causes this
var top = eval('0x' + stringy[0]);