diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-28 18:18:26 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-28 18:18:26 +0000 |
commit | 13422b8a453eebbb91a823b1dd1fe33534906706 (patch) | |
tree | 6c92c8ce1deb768b15d63c2cbd9a0e5c3d96f660 /gcc/cfgrtl.c | |
parent | 2a29b0d35425a21aa2bb6b6e4265ca31517619d8 (diff) | |
download | gcc-13422b8a453eebbb91a823b1dd1fe33534906706.tar.gz |
* calls.c (emit_call_1): Don't use REG_ALWAYS_RETURN.
(emit_library_call_value_1): Don't use LCT_ALWAYS_RETURN and
REG_ALWAYS_RETURN.
* cfgrtl.c (need_fake_edge_p): Likewise.
* combine.c (distribute_notes): Likewise.
* emit-rtl.c (try_split): Likewise.
* recog.c (peephole2_opimize): Likewise.
* reg-notes.def (ALWAYS_RETURN): Remove.
* rtl.h (LCT_ALWAYS_RETURN): Remove.
* tree-cfg.c (need_fake_edge_p): Don't use ECF_ALWAYS_RETURN.
* tree.h (ECF_ALWAYS_RETURN): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95690 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 8de76449941..1b4eb45417f 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -2892,7 +2892,6 @@ need_fake_edge_p (rtx insn) if ((CALL_P (insn) && !SIBLING_CALL_P (insn) && !find_reg_note (insn, REG_NORETURN, NULL) - && !find_reg_note (insn, REG_ALWAYS_RETURN, NULL) && !CONST_OR_PURE_CALL_P (insn))) return true; |