(struct tree_int_cst): Add field for TREE_CST_RTL.

From-SVN: r12556
This commit is contained in:
Richard Kenner 1996-07-23 23:10:15 -04:00
parent a8ffcc8128
commit 8e15f7367b
1 changed files with 2 additions and 0 deletions

View File

@ -510,6 +510,8 @@ struct tree_common
struct tree_int_cst
{
char common[sizeof (struct tree_common)];
struct rtx_def *rtl; /* acts as link to register transfer language
(rtl) info */
HOST_WIDE_INT int_cst_low;
HOST_WIDE_INT int_cst_high;
};