diff options
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 81bcd65..5d736a5 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -1526,9 +1526,9 @@ rtl_dump_bb (basic_block bb, FILE *outf, int indent) basic block. */ void -print_rtl_with_bb (FILE *outf, rtx rtx_first) +print_rtl_with_bb (FILE *outf, const_rtx rtx_first) { - rtx tmp_rtx; + const_rtx tmp_rtx; if (rtx_first == 0) fprintf (outf, "(nil)\n"); else |