diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 2000-09-16 14:58:51 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2000-09-16 14:58:51 -0400 |
commit | f93dacbdefbd440732896d176447c814d61458bf (patch) | |
tree | 6de510f651766f1daf10b0bf6db9c8a40c430cec /gcc/function.h | |
parent | 5748b2cb4b46855f9a6052741de818825e9632ef (diff) | |
download | gcc-f93dacbdefbd440732896d176447c814d61458bf.tar.gz |
function.h (no_debugging_symbols): New field.
* function.h (no_debugging_symbols): New field.
* integrate.c (save_for_inline): Renamed from save_for_inline_nocopy.
Initialize no_debugging_symbols.
(output_inline_function): Save and restore write_symbols and set from
no_debugging_symbols.
* toplev.c (rest_of_compilation): Call save_for_inline.
* tree.h: Update comment.
From-SVN: r36461
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index 08d438ab67e..3912d859790 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -444,6 +444,7 @@ struct function /* For integrate.c. */ int inlinable; + int no_debugging_symbols; /* This is in fact an rtvec. */ void *original_arg_vector; tree original_decl_initial; |