fix: replace strtol with strtoll for 64-bit hex literal parsing on 32-bit platforms

The previous implementation used strtol() for parsing hex literals, which only supports up to 32-bit values on 32-bit architectures. This caused hex literals larger than 0x7FFFFFFF to overflow or fail. Changed to strtoll() which guarantees 64-bit parsing regardless of platform word size.

Also updated the error message to include the actual sizeof(long int) for debugging, uncommented the previously disabled 64-bit hex literal examples in syntax.wren, and added a test case for 0xdeadbeef to verify the fix works correctly.
This commit is contained in:
Bob Nystrom
2017-01-13 05:53:21 +00:00
parent cd6b97d341
commit 1b635d029a
3 changed files with 16 additions and 9 deletions
+2 -1
View File
@@ -5,4 +5,5 @@ System.print(x + 1) // expect: 256
System.print(x == 255) // expect: true
System.print(0x09 is Num) // expect: true
System.print(x is Num) // expect: true
System.print(-0xFF) // expect: -255
System.print(-0xFF) // expect: -255
System.print(0xdeadbeef) // expect: 3735928559