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
4a53008b
Commit
4a53008b
authored
Jul 10, 2000
by
Jason Merrill
Committed by
Jason Merrill
Jul 10, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (expand_expr): Bail earlier if we get an error_mark_node.
From-SVN: r34940
parent
9a6bb3f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
gcc/ChangeLog
+2
-0
gcc/expr.c
+3
-0
No files found.
gcc/ChangeLog
View file @
4a53008b
2000-07-09 Jason Merrill <jason@redhat.com>
2000-07-09 Jason Merrill <jason@redhat.com>
* expr.c (expand_expr): Bail earlier if we get an error_mark_node.
* tree.h (STRIP_NOPS): Check for error_mark_node.
* tree.h (STRIP_NOPS): Check for error_mark_node.
(STRIP_SIGN_NOPS, STRIP_TYPE_NOPS): Likewise.
(STRIP_SIGN_NOPS, STRIP_TYPE_NOPS): Likewise.
(dwarf2out_*): Remove duplicate declarations.
(dwarf2out_*): Remove duplicate declarations.
...
...
gcc/expr.c
View file @
4a53008b
...
@@ -7104,6 +7104,9 @@ expand_expr (exp, target, tmode, modifier)
...
@@ -7104,6 +7104,9 @@ expand_expr (exp, target, tmode, modifier)
case
NOP_EXPR
:
case
NOP_EXPR
:
case
CONVERT_EXPR
:
case
CONVERT_EXPR
:
case
REFERENCE_EXPR
:
case
REFERENCE_EXPR
:
if
(
TREE_OPERAND
(
exp
,
0
)
==
error_mark_node
)
return
error_mark_node
;
if
(
TREE_CODE
(
type
)
==
UNION_TYPE
)
if
(
TREE_CODE
(
type
)
==
UNION_TYPE
)
{
{
tree
valtype
=
TREE_TYPE
(
TREE_OPERAND
(
exp
,
0
));
tree
valtype
=
TREE_TYPE
(
TREE_OPERAND
(
exp
,
0
));
...
...
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