diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2010-04-14 17:08:54 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2010-04-14 17:08:54 +0200 |
commit | a3f1cee4d3226d5af5f9972952d46c60d1e88d3e (patch) | |
tree | 4a23181587a98bf3a8e7e61b92798d6319bf2660 /gcc/df-core.c | |
parent | 3eb4dbe35b1fa733f71d778ed742d915897ad430 (diff) | |
download | gcc-a3f1cee4d3226d5af5f9972952d46c60d1e88d3e.tar.gz |
df-core.c (df_ref_debug): Change format string placeholder from 0x%x to %#x.
* df-core.c (df_ref_debug): Change format string placeholder
from 0x%x to %#x.
* dwarf2asm.c (dw2_asm_output_data_raw,
dw2_asm_output_data_uleb128_raw, dw2_asm_output_data_uleb128,
dw2_asm_output_data_sleb128_raw, dw2_asm_output_data_sleb128): Ditto.
* dwarf2out.c (output_cfi, output_cfi_directive,
dwarf2out_do_cfi_startproc, output_loc_sequence_raw,
output_cfa_loc_raw, output_die, output_ranges, output_file_names):
Ditto.
* genattrtab.c (write_test_expr, write_attr_valueq): Ditto.
* print-rtl.c (print_rtx): Ditto.
From-SVN: r158347
Diffstat (limited to 'gcc/df-core.c')
-rw-r--r-- | gcc/df-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/df-core.c b/gcc/df-core.c index 678508d4a80..758e40e8eb7 100644 --- a/gcc/df-core.c +++ b/gcc/df-core.c @@ -2137,7 +2137,7 @@ df_ref_debug (df_ref ref, FILE *file) fprintf (file, "%c%d ", DF_REF_REG_DEF_P (ref) ? 'd' : 'u', DF_REF_ID (ref)); - fprintf (file, "reg %d bb %d insn %d flag 0x%x type 0x%x ", + fprintf (file, "reg %d bb %d insn %d flag %#x type %#x ", DF_REF_REGNO (ref), DF_REF_BBNO (ref), DF_REF_IS_ARTIFICIAL (ref) ? -1 : DF_REF_INSN_UID (ref), |