diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/basic-block.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 72134c1..ae443aa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2008-01-27 Bernhard Fischer <aldot@gcc.gnu.org> + * basic-block.h (condjump_equiv_p): Fix comment. + +2008-01-27 Bernhard Fischer <aldot@gcc.gnu.org> + * tree-pretty-print.c (print_generic_decl, print_generic_stmt, print_generic_stmt_indented): Fix comment. diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 1a678a9..c04c6f6 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -1117,7 +1117,7 @@ extern int struct_equiv_block_eq (int, struct equiv_info *); extern bool struct_equiv_init (int, struct equiv_info *); extern bool rtx_equiv_p (rtx *, rtx, int, struct equiv_info *); -/* In cfgrtl.c */ +/* In cfgcleanup.c */ extern bool condjump_equiv_p (struct equiv_info *, bool); /* Return true when one of the predecessor edges of BB is marked with EDGE_EH. */ |