diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1995-01-20 17:59:17 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1995-01-20 17:59:17 -0800 |
commit | fb854c63db2752c2c4c3ffabe0f7d4ab3d51a93b (patch) | |
tree | 9cb97b52e4496edfbb48fa44766dafabb81d8ed5 /gcc/integrate.c | |
parent | 71cd4a8d33c7bf342893920d2e6eb7148414e3d4 (diff) | |
download | gcc-fb854c63db2752c2c4c3ffabe0f7d4ab3d51a93b.zip gcc-fb854c63db2752c2c4c3ffabe0f7d4ab3d51a93b.tar.gz gcc-fb854c63db2752c2c4c3ffabe0f7d4ab3d51a93b.tar.bz2 |
(save_for_inline_copying): Add comment that
nonlocal_label list should be updated if it ever can be nonzero.
From-SVN: r8783
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index ed21858..7f784c3 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -380,6 +380,11 @@ adjust_copied_decl_tree (block) compiled. Our caller (rest_of_compilation) saves the original DECL_INITIAL and DECL_ARGUMENTS; here we copy them. */ +/* ??? The nonlocal_label list should be adjusted also. However, since + a function that contains a nested function never gets inlined currently, + the nonlocal_label list will always be empty, so we don't worry about + it for now. */ + void save_for_inline_copying (fndecl) tree fndecl; |