diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-10-11 03:03:17 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-10-11 03:03:17 +0000 |
commit | 09a690027686598df8b9d4cad6262ed6242dd610 (patch) | |
tree | d6543f7baf05ca82dd0b7156e62e2d65724bcfb3 /gcc/function.h | |
parent | adc2961cc741e73288172045aab951936651f27f (diff) | |
download | gcc-09a690027686598df8b9d4cad6262ed6242dd610.tar.gz |
(struct function): New field `machine'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5722 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/function.h b/gcc/function.h index df6279d972f..153fece8ed4 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -160,6 +160,8 @@ struct function /* For md files. */ int uses_pic_offset_table; + /* tm.h can use this to store whatever it likes. */ + struct machine_function *machine; /* For reorg. */ rtx epilogue_delay_list; @@ -193,7 +195,13 @@ extern struct function *outer_function_chain; /* Put all this function's BLOCK nodes into a vector and return it. Also store in each NOTE for the beginning or end of a block the index of that block in the vector. */ -tree *identify_blocks PROTO((tree, rtx)); +extern tree *identify_blocks PROTO((tree, rtx)); + +/* These variables hold pointers to functions to + save and restore machine-specific data, + in push_function_context and pop_function_context. */ +extern void (*save_machine_status) (); +extern void (*restore_machine_status) (); #ifdef rtx #undef rtx |