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
e55e18d6
Commit
e55e18d6
authored
Dec 22, 1999
by
Mark Mitchell
Committed by
Mark Mitchell
Dec 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dump.c (dequeue_and_dump): Handle CTOR_STMTs.
From-SVN: r31073
parent
f13734bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
gcc/cp/ChangeLog
+4
-0
gcc/cp/dump.c
+9
-0
No files found.
gcc/cp/ChangeLog
View file @
e55e18d6
1999-12-22 Mark Mitchell <mark@codesourcery.com>
* dump.c (dequeue_and_dump): Handle CTOR_STMTs.
1999-12-22 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* error.c (dump_decl): Support named return values.
...
...
gcc/cp/dump.c
View file @
e55e18d6
...
...
@@ -646,6 +646,15 @@ dequeue_and_dump (di)
dump_next_stmt
(
di
,
t
);
break
;
case
CTOR_STMT
:
dump_stmt
(
di
,
t
);
if
(
CTOR_BEGIN_P
(
t
))
dump_string
(
di
,
"begn"
);
else
dump_string
(
di
,
"end"
);
dump_next_stmt
(
di
,
t
);
break
;
case
DECL_STMT
:
dump_stmt
(
di
,
t
);
dump_child
(
"decl"
,
DECL_STMT_DECL
(
t
));
...
...
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