From: Andreas Krebbel Date: Wed, 13 Sep 2006 13:00:57 +0000 (+0000) Subject: basic-block.h (bb_has_eh_pred): Fix comment. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f66fd328ce6453b71f117eed42dad270e3c2bcaa;p=gcc.git basic-block.h (bb_has_eh_pred): Fix comment. * basic-block.h (bb_has_eh_pred): Fix comment. From-SVN: r116922 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 63188b874e3..0bdff8c3aa8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-09-13 Andreas Krebbel + + * basic_block.h (bb_has_eh_pred): Fix comment. + 2006-09-13 Andreas Krebbel * flow.c (calculate_global_regs_live): Invalidate eh registers diff --git a/gcc/basic-block.h b/gcc/basic-block.h index a95e5b8781b..67c09226ad1 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -1175,7 +1175,7 @@ extern bool rtx_equiv_p (rtx *, rtx, int, struct equiv_info *); /* In cfgrtl.c */ extern bool condjump_equiv_p (struct equiv_info *, bool); -/* Return true when one of the predecessor edges of BB is marked with FLAGS. */ +/* Return true when one of the predecessor edges of BB is marked with EDGE_EH. */ static inline bool bb_has_eh_pred (basic_block bb) { edge e;