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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user