diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-24 21:19:33 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-24 21:19:33 +0000 |
commit | cdea392d2533f03a0a6241668d0fc6b1ec7669e8 (patch) | |
tree | 816de4cec5fd081b3bc30b3f93e5116037f6881d /gcc/function.h | |
parent | 51a4e5b9c20a3119f714042870891b1f580dd503 (diff) | |
download | gcc-cdea392d2533f03a0a6241668d0fc6b1ec7669e8.tar.gz |
2003-11-23 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* function.c: Make outer_function-chain external.
* function.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73894 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index 9c06d95a095..3aad05a4eea 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -519,6 +519,9 @@ struct function GTY(()) /* The function currently being compiled. */ extern GTY(()) struct function *cfun; +/* Pointer to chain of `struct function' for containing functions. */ +extern GTY(()) struct function *outer_function_chain; + /* Nonzero if we've already converted virtual regs to hard regs. */ extern int virtuals_instantiated; |