diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-05-06 21:40:04 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-05-06 21:40:04 +0000 |
commit | cd6a3ec79ba8e91ff2532c9c7818f5b1082bc2b6 (patch) | |
tree | da6603ca53c448fb1ffa79f040dcf167c021c0b7 /gcc/rtl.def | |
parent | 5f85a2404c82a41b8f9df49952b7aee6d845de5c (diff) | |
download | gcc-cd6a3ec79ba8e91ff2532c9c7818f5b1082bc2b6.tar.gz |
(CALL_INSN): Define new CALL_INSN_FUNCTION_USAGE field.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7233 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r-- | gcc/rtl.def | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def index b984f36be76..686ad21cb23 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -355,8 +355,9 @@ DEF_RTL_EXPR(JUMP_INSN, "jump_insn", "iuueiee0", 'i') /* An instruction that can possibly call a subroutine but which will not change which instruction comes next in the current function. - Fields ( rtx->fld[] ) have exact same meaning as INSN's. */ -DEF_RTL_EXPR(CALL_INSN, "call_insn", "iuueiee", 'i') + Field ( rtx->fld[7] ) is CALL_INSN_FUNCTION_USAGE. + All other fields ( rtx->fld[] ) have exact same meaning as INSN's. */ +DEF_RTL_EXPR(CALL_INSN, "call_insn", "iuueieee", 'i') /* A marker that indicates that control will not flow through. */ DEF_RTL_EXPR(BARRIER, "barrier", "iuu", 'x') |