aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2001-08-08 21:07:47 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2001-08-08 19:07:47 +0000
commit9d98f8f9c4bea7b6ddcc1cb935e3b17d498b4beb (patch)
treeb641fa444ecc5e0162540715896c50029c4ef59f /gcc/rtl.c
parent82423cbad3a82b066e23d0c5aa569c24fc12cc66 (diff)
downloadgcc-9d98f8f9c4bea7b6ddcc1cb935e3b17d498b4beb.zip
gcc-9d98f8f9c4bea7b6ddcc1cb935e3b17d498b4beb.tar.gz
gcc-9d98f8f9c4bea7b6ddcc1cb935e3b17d498b4beb.tar.bz2
calls.c (ECF_ALWAYS_RETURN): New constant.
* calls.c (ECF_ALWAYS_RETURN): New constant. (emit_call_1): Add REG_ALWAYS_RETURN note if needed. (expand_call): Use LCF_ALWAYS_RETURN for __bb_fork_func. (emit_library_call_value_1): Handle LCT_ALWAYS_RETRUN. * flow.c (need_fake_edge_p): Handle REG_ALWAYS_RETURN. * rtl.c (reg_note_name): New name. * rtl.h (enum reg_note): Add REG_ALWAYS_RETURN. From-SVN: r44722
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index 74b58d1..12b0111 100644
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -281,7 +281,7 @@ const char * const reg_note_name[] =
"REG_EXEC_COUNT", "REG_NOALIAS", "REG_SAVE_AREA", "REG_BR_PRED",
"REG_FRAME_RELATED_EXPR", "REG_EH_CONTEXT", "REG_EH_REGION",
"REG_EH_RETHROW", "REG_SAVE_NOTE", "REG_MAYBE_DEAD", "REG_NORETURN",
- "REG_NON_LOCAL_GOTO", "REG_SETJMP"
+ "REG_NON_LOCAL_GOTO", "REG_SETJMP", "REG_ALWAYS_RETURN"
};