debuginfo: Fixed some instances of gdb wrongly printing u8/i8 values as chars.

This commit is contained in:
Michael Woerister 2013-06-24 17:52:22 +02:00
parent fb3e17b93a
commit 6a3094159f
2 changed files with 6 additions and 6 deletions

View File

@ -26,8 +26,8 @@
// check:$2 = -1
// debugger:print c
// check:$3 = 97
// debugger:print i8
// check:$4 = 68 'D'
// debugger:print/d i8
// check:$4 = 68
// debugger:print i16
// check:$5 = -16
// debugger:print i32
@ -36,8 +36,8 @@
// check:$7 = -64
// debugger:print u
// check:$8 = 1
// debugger:print u8
// check:$9 = 100 'd'
// debugger:print/d u8
// check:$9 = 100
// debugger:print u16
// check:$10 = 16
// debugger:print u32

View File

@ -16,8 +16,8 @@
// debugger:run
// debugger:finish
// debugger:print noPadding8
// check:$1 = {-100 '\234', 100 'd'}
// debugger:print/d noPadding8
// check:$1 = {-100, 100}
// debugger:print noPadding16
// check:$2 = {0, 1, 2}
// debugger:print noPadding32