Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
8a958768
Commit
8a958768
authored
Jul 11, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1557
parent
ff2da9fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
gcc/toplev.c
+8
-2
No files found.
gcc/toplev.c
View file @
8a958768
...
...
@@ -1987,6 +1987,8 @@ rest_of_compilation (decl)
to be restored after we finish compiling the function
(for use when compiling inline calls to this function). */
tree
saved_block_tree
=
0
;
/* Likewise, for DECL_ARGUMENTS. */
tree
saved_arguments
=
0
;
int
failure
=
0
;
/* If we are reconsidering an inline function
...
...
@@ -2041,11 +2043,12 @@ rest_of_compilation (decl)
goto
exit_rest_of_compilation
;
}
/* If we have to compile the function now, save its rtl
/* If we have to compile the function now, save its rtl
and subdecls
so that its compilation will not affect what others get. */
if
(
TREE_INLINE
(
decl
))
{
saved_block_tree
=
DECL_INITIAL
(
decl
);
saved_arguments
=
DECL_ARGUMENTS
(
decl
);
TIMEVAR
(
integration_time
,
save_for_inline_copying
(
decl
));
}
}
...
...
@@ -2523,12 +2526,15 @@ rest_of_compilation (decl)
sdbout_types
(
NULL_TREE
);
#endif
/* Put back the tree of subblocks from before we copied it.
/* Put back the tree of subblocks and list of arguments
from before we copied them.
Code generation and the output of debugging info may have modified
the copy, but the original is unchanged. */
if
(
saved_block_tree
!=
0
)
DECL_INITIAL
(
decl
)
=
saved_block_tree
;
if
(
saved_arguments
!=
0
)
DECL_ARGUMENTS
(
decl
)
=
saved_arguments
;
reload_completed
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment