diff options
author | Andreas Krebbel <krebbel1@de.ibm.com> | 2006-09-13 13:00:57 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@gcc.gnu.org> | 2006-09-13 13:00:57 +0000 |
commit | f66fd328ce6453b71f117eed42dad270e3c2bcaa (patch) | |
tree | 7ae1b6db9ff75d6f4c50a997d576717a379a7c8e /gcc/basic-block.h | |
parent | 95cb77e64faa8e0a5852b947d29681809ad695ab (diff) | |
download | gcc-f66fd328ce6453b71f117eed42dad270e3c2bcaa.zip gcc-f66fd328ce6453b71f117eed42dad270e3c2bcaa.tar.gz gcc-f66fd328ce6453b71f117eed42dad270e3c2bcaa.tar.bz2 |
basic-block.h (bb_has_eh_pred): Fix comment.
* basic-block.h (bb_has_eh_pred): Fix comment.
From-SVN: r116922
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index a95e5b8..67c0922 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; |