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
fa3ee801
Commit
fa3ee801
authored
20 years ago
by
Daniel Jacobowitz
Committed by
Daniel Jacobowitz
20 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* semantics.c (expand_body): Assert that we are not nested.
From-SVN: r87126
parent
d3a583b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/cp/ChangeLog
+4
-0
gcc/cp/semantics.c
+6
-1
No files found.
gcc/cp/ChangeLog
View file @
fa3ee801
2004-09-06 Daniel Jacobowitz <dan@debian.org>
* semantics.c (expand_body): Assert that we are not nested.
2004-09-06 Zack Weinberg <zack@codesourcery.com>
* decl.c (build_enumerator): Use add_double and int_fits_type_p
...
...
This diff is collapsed.
Click to expand it.
gcc/cp/semantics.c
View file @
fa3ee801
...
...
@@ -2881,7 +2881,12 @@ expand_body (tree fn)
/* Emit any thunks that should be emitted at the same time as FN. */
emit_associated_thunks
(
fn
);
tree_rest_of_compilation
(
fn
,
function_depth
>
1
);
/* This function is only called from cgraph, or recursively from
emit_associated_thunks. In neither case should we be currently
generating trees for a function. */
gcc_assert
(
function_depth
==
0
);
tree_rest_of_compilation
(
fn
,
0
);
current_function_decl
=
saved_function
;
...
...
This diff is collapsed.
Click to expand it.
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