diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-19 12:02:24 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-19 12:02:24 +0000 |
commit | f225b9ac3e91273ffdbc7247da05fc42ffd0b600 (patch) | |
tree | 298a6956473a655c0ae40a90948b4f68037c881d /gcc/bt-load.c | |
parent | 9b770b5ad623febbf60d3850c216252bd8bf2289 (diff) | |
download | gcc-f225b9ac3e91273ffdbc7247da05fc42ffd0b600.tar.gz |
* bt-load.c (migrate_btr_defs): Correct printf arguments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68192 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bt-load.c')
-rw-r--r-- | gcc/bt-load.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/bt-load.c b/gcc/bt-load.c index 790fdfd8856..e585bc79f33 100644 --- a/gcc/bt-load.c +++ b/gcc/bt-load.c @@ -1299,8 +1299,9 @@ migrate_btr_defs (enum reg_class btr_class, int allow_callee_save) { basic_block bb = BASIC_BLOCK (i); fprintf(rtl_dump_file, - "Basic block %d: count = %lld loop-depth = %d idom = %d\n", - i, bb->count, bb->loop_depth, + "Basic block %d: count = " HOST_WIDEST_INT_PRINT_DEC + " loop-depth = %d idom = %d\n", + i, (HOST_WIDEST_INT) bb->count, bb->loop_depth, get_immediate_dominator (dom, bb)->index); } } |