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
e28cae4f
Commit
e28cae4f
authored
Jul 24, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(start_init): Second arg is now a tree.
From-SVN: r4980
parent
8245685d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
gcc/c-typeck.c
+6
-2
No files found.
gcc/c-typeck.c
View file @
e28cae4f
...
@@ -5181,14 +5181,18 @@ struct initializer_stack *initializer_stack;
...
@@ -5181,14 +5181,18 @@ struct initializer_stack *initializer_stack;
/* Prepare to parse and output the initializer for variable DECL. */
/* Prepare to parse and output the initializer for variable DECL. */
void
void
start_init
(
decl
,
asmspec
,
top_level
)
start_init
(
decl
,
asmspec
_tree
,
top_level
)
tree
decl
;
tree
decl
;
char
*
asmspec
;
tree
asmspec_tree
;
int
top_level
;
int
top_level
;
{
{
char
*
locus
;
char
*
locus
;
struct
initializer_stack
*
p
struct
initializer_stack
*
p
=
(
struct
initializer_stack
*
)
xmalloc
(
sizeof
(
struct
initializer_stack
));
=
(
struct
initializer_stack
*
)
xmalloc
(
sizeof
(
struct
initializer_stack
));
char
*
asmspec
=
0
;
if
(
asmspec_tree
)
asmspec
=
TREE_STRING_POINTER
(
asmspec_tree
);
p
->
decl
=
constructor_decl
;
p
->
decl
=
constructor_decl
;
p
->
asmspec
=
constructor_asmspec
;
p
->
asmspec
=
constructor_asmspec
;
...
...
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