diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cfgexpand.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1e659d0..baf96ff 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-01-24 Steven Bosscher <stevenb@suse.de> + + * cfgexpand.c (expand_gimple_tailcall): Fix typo. + 2005-01-24 Richard Sandiford <rsandifo@redhat.com> * config/mips/irix-csr.c: New file. diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index f710aed..f53723e 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -960,7 +960,7 @@ expand_gimple_tailcall (basic_block bb, tree stmt, bool *can_fallthru) if (CALL_P (last) && SIBLING_CALL_P (last)) goto found; - maybe_dump_rtl_for_tree_stmt (stmt, last); + maybe_dump_rtl_for_tree_stmt (stmt, last2); *can_fallthru = true; return NULL; |