aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-10-10 09:44:58 +0000
committerRichard Stallman <rms@gnu.org>1992-10-10 09:44:58 +0000
commitb76227eaa571ea1d9b050721ff636a5a9566ac83 (patch)
tree43c77930bf3c890662d633598ed9c98ea1b67a26 /gcc/function.h
parent88e71d24650333c6648a43b55d4d03c07d44f2d0 (diff)
downloadgcc-b76227eaa571ea1d9b050721ff636a5a9566ac83.zip
gcc-b76227eaa571ea1d9b050721ff636a5a9566ac83.tar.gz
gcc-b76227eaa571ea1d9b050721ff636a5a9566ac83.tar.bz2
(struct function): New fields const_rtx_hash_table,
const_rtx_sym_hash_table, first_pool, last_pool, pool_offset. From-SVN: r2392
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 c0df03c..ed47b3c 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. */