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
5d5e98dc
Commit
5d5e98dc
authored
Apr 21, 2006
by
Volker Reichelt
Committed by
Volker Reichelt
Apr 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-typeck.c (pop_init_level): Simplify.
From-SVN: r113152
parent
a71536ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
9 deletions
+6
-9
gcc/ChangeLog
+4
-0
gcc/c-typeck.c
+2
-9
No files found.
gcc/ChangeLog
View file @
5d5e98dc
2006
-
04
-
21
Volker
Reichelt
<
reichelt
@igpm
.
rwth
-
aachen
.
de
>
*
c
-
typeck
.
c
(
pop_init_level
)
:
Simplify
.
2006
-
04
-
21
Steve
Ellcey
<
sje
@cup
.
hp
.
com
>
*
config
/
pa
/
t
-
pa64
:
Add
dependencies
on
$
(
GCC_PASSES
).
...
...
gcc/c-typeck.c
View file @
5d5e98dc
...
...
@@ -5442,15 +5442,8 @@ pop_init_level (int implicit)
constructor_stack
=
p
->
next
;
free
(
p
);
if
(
ret
.
value
==
0
)
{
if
(
constructor_stack
==
0
)
{
ret
.
value
=
error_mark_node
;
return
ret
;
}
return
ret
;
}
if
(
ret
.
value
==
0
&&
constructor_stack
==
0
)
ret
.
value
=
error_mark_node
;
return
ret
;
}
...
...
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