diff options
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index c61944a..2c3a847 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -181,6 +181,13 @@ struct function GTY(()) struct emit_status *emit; struct varasm_status *varasm; + /* For tree-optimize.c. */ + + /* Saved tree and arguments during tree optimization. Used later for + inlining */ + tree saved_tree; + tree saved_args; + /* For function.c. */ /* Points to the FUNCTION_DECL of this function. */ |