diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-06 17:40:04 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-06 17:40:04 -0400 |
commit | cc8677043873e50d6e7f507e4fb9b6ea514913f5 (patch) | |
tree | da6603ca53c448fb1ffa79f040dcf167c021c0b7 /gcc/rtl.def | |
parent | a03caf76d7728d9b1949bb650b4e44896aa5a721 (diff) | |
download | gcc-cc8677043873e50d6e7f507e4fb9b6ea514913f5.zip gcc-cc8677043873e50d6e7f507e4fb9b6ea514913f5.tar.gz gcc-cc8677043873e50d6e7f507e4fb9b6ea514913f5.tar.bz2 |
(CALL_INSN): Define new CALL_INSN_FUNCTION_USAGE field.
From-SVN: r7233
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 b984f36..686ad21 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') |