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
cb96be0b
Commit
cb96be0b
authored
Sep 21, 1993
by
Per Bothner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor push_member_name improvement.
From-SVN: r5380
parent
ca695ac9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
gcc/c-typeck.c
+8
-5
No files found.
gcc/c-typeck.c
View file @
cb96be0b
...
...
@@ -4780,9 +4780,12 @@ push_string (string)
/* Push a member name on the stack. Printed as '.' STRING. */
static
void
push_member_name
(
string
)
char
*
string
;
push_member_name
(
decl
)
tree
decl
;
{
char
*
string
=
DECL_NAME
(
decl
)
?
IDENTIFIER_POINTER
(
DECL_NAME
(
decl
))
:
"<anonymous>"
;
PUSH_SPELLING
(
SPELLING_MEMBER
,
string
,
u
.
s
);
}
...
...
@@ -5519,7 +5522,7 @@ push_init_level (implicit)
else
{
constructor_type
=
TREE_TYPE
(
constructor_fields
);
push_member_name
(
IDENTIFIER_POINTER
(
DECL_NAME
(
constructor_fields
))
);
push_member_name
(
constructor_fields
);
}
}
else
if
(
TREE_CODE
(
constructor_type
)
==
ARRAY_TYPE
)
...
...
@@ -6258,7 +6261,7 @@ process_init_element (value)
if
(
value
)
{
push_member_name
(
IDENTIFIER_POINTER
(
DECL_NAME
(
constructor_fields
))
);
push_member_name
(
constructor_fields
);
output_init_element
(
value
,
fieldtype
,
constructor_fields
,
1
);
RESTORE_SPELLING_DEPTH
(
constructor_depth
);
}
...
...
@@ -6315,7 +6318,7 @@ process_init_element (value)
if
(
value
)
{
push_member_name
(
IDENTIFIER_POINTER
(
DECL_NAME
(
constructor_fields
))
);
push_member_name
(
constructor_fields
);
output_init_element
(
value
,
fieldtype
,
constructor_fields
,
1
);
RESTORE_SPELLING_DEPTH
(
constructor_depth
);
}
...
...
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