summaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1992-10-10 09:44:58 +0000
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1992-10-10 09:44:58 +0000
commit80c68c4fc74a2cbc6cf29d71de06aff5958a32d1 (patch)
tree43c77930bf3c890662d633598ed9c98ea1b67a26 /gcc/function.h
parent35325097e55c9ccaccdf4374f4263899fbe4f876 (diff)
downloadgcc-80c68c4fc74a2cbc6cf29d71de06aff5958a32d1.tar.gz
(struct function): New fields const_rtx_hash_table,
const_rtx_sym_hash_table, first_pool, last_pool, pool_offset. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@2392 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h
index c0df03c509b..ed47b3cb477 100644
--- a/gcc/function.h
+++ b/gcc/function.h
@@ -161,6 +161,12 @@ struct function
/* For reorg. */
rtx epilogue_delay_list;
+
+ /* For varasm. */
+ struct constant_descriptor **const_rtx_hash_table;
+ struct pool_sym **const_rtx_sym_hash_table;
+ struct pool_constant *first_pool, *last_pool;
+ int pool_offset;
};
/* The FUNCTION_DECL for an inline function currently being expanded. */