diff options
author | Richard Henderson <rth@twiddle.net> | 2013-05-24 14:16:14 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-07-09 07:15:24 -0700 |
commit | 45aba097d24544ed2d3244b3268a071750e4499b (patch) | |
tree | 70fa7776d5b97b81ba71de58fae47b69d4f8c2f8 /tcg | |
parent | 1e709f38331ef5bab76cd454c61d4af982cadf0b (diff) | |
download | qemu-45aba097d24544ed2d3244b3268a071750e4499b.tar.gz |
tcg: Fix high_pc fields in .debug_info
I don't think the debugger actually looks at this for anything,
using the correct .debug_frame contents, but might as well get
it all correct.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2657,9 +2657,9 @@ static void tcg_register_jit_int(void *buf_ptr, size_t buf_size, img->sym[1].st_size = buf_size; img->di.cu_low_pc = buf; - img->di.cu_high_pc = buf_size; + img->di.cu_high_pc = buf + buf_size; img->di.fn_low_pc = buf; - img->di.fn_high_pc = buf_size; + img->di.fn_high_pc = buf + buf_size; #ifdef DEBUG_JIT /* Enable this block to be able to debug the ELF image file creation. |