diff options
Diffstat (limited to 'test/run-spec-wasm2c.py')
-rwxr-xr-x | test/run-spec-wasm2c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run-spec-wasm2c.py b/test/run-spec-wasm2c.py index af8b3ad7..fdcb01ab 100755 --- a/test/run-spec-wasm2c.py +++ b/test/run-spec-wasm2c.py @@ -84,7 +84,7 @@ def F64ToC(f64_bits): elif f64_bits == F64_SIGN_BIT: return '-0.0' else: - return '%#.17gL' % ReinterpretF64(f64_bits) + return '%#.17g' % ReinterpretF64(f64_bits) def MangleType(t): |