diff options
| author | Ulrich Drepper <[email protected]> | 2009-02-05 22:13:05 -0800 |
|---|---|---|
| committer | Ulrich Drepper <[email protected]> | 2009-02-05 22:13:05 -0800 |
| commit | 8cbc8e61a6835262ab6f1a1be316956351ed089f (patch) | |
| tree | 0910f70e9d1de8fe782ed1fca7c511c34a328323 /src | |
| parent | 51b3f473b60bfface7ca37912ebc2858d1970cd9 (diff) | |
Yet more label fixes in readelf output of debug_info.
Diffstat (limited to 'src')
| -rw-r--r-- | src/readelf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/readelf.c b/src/readelf.c index c9f18896..d687b7fd 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -4302,7 +4302,7 @@ print_cfa_program (const unsigned char *readp, const unsigned char *const endp, // XXX overflow check get_uleb128 (op1, readp); get_uleb128 (op2, readp); - printf (" same_value r%" PRIu64 " (%s) in r%" PRIu64 " (%s)\n", + printf (" register r%" PRIu64 " (%s) in r%" PRIu64 " (%s)\n", op1, regname (op1), op2, regname (op2)); break; case DW_CFA_remember_state: @@ -4376,7 +4376,7 @@ print_cfa_program (const unsigned char *readp, const unsigned char *const endp, // XXX overflow check get_uleb128 (op1, readp); get_sleb128 (sop2, readp); - printf (" val_offset %" PRIu64 " at offset %" PRId64 "\n", + printf (" val_offset_sf %" PRIu64 " at offset %" PRId64 "\n", op1, sop2 * data_align); break; case DW_CFA_val_expression: @@ -4389,11 +4389,11 @@ print_cfa_program (const unsigned char *readp, const unsigned char *const endp, break; case DW_CFA_MIPS_advance_loc8: op1 = read_8ubyte_unaligned_inc (dbg, readp); - printf (" advance_loc2 %" PRIu64 " to %#" PRIx64 "\n", + printf (" MIPS_advance_loc8 %" PRIu64 " to %#" PRIx64 "\n", op1, pc += op1 * code_align); break; case DW_CFA_GNU_window_save: - puts (" window_save"); + puts (" GNU_window_save"); break; case DW_CFA_GNU_args_size: // XXX overflow check |
