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
af79bb86
Commit
af79bb86
authored
Aug 13, 1998
by
Jason Merrill
Committed by
Jason Merrill
Aug 13, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.c (simple_cst_equal): Add braces to shut up warnings.
From-SVN: r21699
parent
ff59bfe6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/ChangeLog
+1
-0
gcc/tree.c
+7
-4
No files found.
gcc/ChangeLog
View file @
af79bb86
...
...
@@ -6,6 +6,7 @@ Thu Aug 13 16:09:53 1998 Martin von Loewis <loewis@informatik.hu-berlin.de>
Thu Aug 13 15:24:48 1998 Jason Merrill <jason@yorick.cygnus.com>
* toplev.c (display_help): Add braces to shut up warnings.
* tree.c (simple_cst_equal): Likewise.
* fold-const.c (non_lvalue): Don't deal with null pointer
constants here.
...
...
gcc/tree.c
View file @
af79bb86
...
...
@@ -3958,10 +3958,13 @@ simple_cst_equal (t1, t2)
code2
=
TREE_CODE
(
t2
);
if
(
code1
==
NOP_EXPR
||
code1
==
CONVERT_EXPR
||
code1
==
NON_LVALUE_EXPR
)
if
(
code2
==
NOP_EXPR
||
code2
==
CONVERT_EXPR
||
code2
==
NON_LVALUE_EXPR
)
return
simple_cst_equal
(
TREE_OPERAND
(
t1
,
0
),
TREE_OPERAND
(
t2
,
0
));
else
return
simple_cst_equal
(
TREE_OPERAND
(
t1
,
0
),
t2
);
{
if
(
code2
==
NOP_EXPR
||
code2
==
CONVERT_EXPR
||
code2
==
NON_LVALUE_EXPR
)
return
simple_cst_equal
(
TREE_OPERAND
(
t1
,
0
),
TREE_OPERAND
(
t2
,
0
));
else
return
simple_cst_equal
(
TREE_OPERAND
(
t1
,
0
),
t2
);
}
else
if
(
code2
==
NOP_EXPR
||
code2
==
CONVERT_EXPR
||
code2
==
NON_LVALUE_EXPR
)
return
simple_cst_equal
(
t1
,
TREE_OPERAND
(
t2
,
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