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
d964285c
Commit
d964285c
authored
Jul 08, 1992
by
Charles Hannum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1533
parent
a9814526
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
21 deletions
+12
-21
gcc/expr.c
+2
-5
gcc/tree.c
+8
-14
gcc/varasm.c
+2
-2
No files found.
gcc/expr.c
View file @
d964285c
...
...
@@ -6546,11 +6546,8 @@ do_store_flag (exp, target, mode, only_cheap)
if
(
operand_mode
==
BLKmode
)
return
0
;
while
(
TREE_CODE
(
arg0
)
==
NON_LVALUE_EXPR
)
arg0
=
TREE_OPERAND
(
arg0
,
0
);
while
(
TREE_CODE
(
arg1
)
==
NON_LVALUE_EXPR
)
arg1
=
TREE_OPERAND
(
arg1
,
0
);
STRIP_NOPS
(
arg0
);
STRIP_NOPS
(
arg1
);
/* Get the rtx comparison code to use. We know that EXP is a comparison
operation of some type. Some comparisons against 1 and -1 can be
...
...
gcc/tree.c
View file @
d964285c
...
...
@@ -1217,8 +1217,7 @@ int
integer_zerop
(
expr
)
tree
expr
;
{
while
(
TREE_CODE
(
expr
)
==
NON_LVALUE_EXPR
)
expr
=
TREE_OPERAND
(
expr
,
0
);
STRIP_NOPS
(
expr
);
return
(
TREE_CODE
(
expr
)
==
INTEGER_CST
&&
TREE_INT_CST_LOW
(
expr
)
==
0
...
...
@@ -1231,8 +1230,7 @@ int
integer_onep
(
expr
)
tree
expr
;
{
while
(
TREE_CODE
(
expr
)
==
NON_LVALUE_EXPR
)
expr
=
TREE_OPERAND
(
expr
,
0
);
STRIP_NOPS
(
expr
);
return
(
TREE_CODE
(
expr
)
==
INTEGER_CST
&&
TREE_INT_CST_LOW
(
expr
)
==
1
...
...
@@ -1249,8 +1247,7 @@ integer_all_onesp (expr)
register
int
prec
;
register
int
uns
;
while
(
TREE_CODE
(
expr
)
==
NON_LVALUE_EXPR
)
expr
=
TREE_OPERAND
(
expr
,
0
);
STRIP_NOPS
(
expr
);
if
(
TREE_CODE
(
expr
)
!=
INTEGER_CST
)
return
0
;
...
...
@@ -1292,8 +1289,7 @@ integer_pow2p (expr)
{
HOST_WIDE_INT
high
,
low
;
while
(
TREE_CODE
(
expr
)
==
NON_LVALUE_EXPR
)
expr
=
TREE_OPERAND
(
expr
,
0
);
STRIP_NOPS
(
expr
);
if
(
TREE_CODE
(
expr
)
!=
INTEGER_CST
)
return
0
;
...
...
@@ -1314,8 +1310,7 @@ int
real_zerop
(
expr
)
tree
expr
;
{
while
(
TREE_CODE
(
expr
)
==
NON_LVALUE_EXPR
)
expr
=
TREE_OPERAND
(
expr
,
0
);
STRIP_NOPS
(
expr
);
return
(
TREE_CODE
(
expr
)
==
REAL_CST
&&
REAL_VALUES_EQUAL
(
TREE_REAL_CST
(
expr
),
dconst0
));
...
...
@@ -1327,8 +1322,7 @@ int
real_onep
(
expr
)
tree
expr
;
{
while
(
TREE_CODE
(
expr
)
==
NON_LVALUE_EXPR
)
expr
=
TREE_OPERAND
(
expr
,
0
);
STRIP_NOPS
(
expr
);
return
(
TREE_CODE
(
expr
)
==
REAL_CST
&&
REAL_VALUES_EQUAL
(
TREE_REAL_CST
(
expr
),
dconst1
));
...
...
@@ -1340,8 +1334,7 @@ int
real_twop
(
expr
)
tree
expr
;
{
while
(
TREE_CODE
(
expr
)
==
NON_LVALUE_EXPR
)
expr
=
TREE_OPERAND
(
expr
,
0
);
STRIP_NOPS
(
expr
);
return
(
TREE_CODE
(
expr
)
==
REAL_CST
&&
REAL_VALUES_EQUAL
(
TREE_REAL_CST
(
expr
),
dconst2
));
...
...
@@ -1353,6 +1346,7 @@ int
really_constant_p
(
exp
)
tree
exp
;
{
/* This is not quite the same as STRIP_NOPS. It does more. */
while
(
TREE_CODE
(
exp
)
==
NOP_EXPR
||
TREE_CODE
(
exp
)
==
CONVERT_EXPR
||
TREE_CODE
(
exp
)
==
NON_LVALUE_EXPR
)
...
...
gcc/varasm.c
View file @
d964285c
...
...
@@ -2678,8 +2678,8 @@ output_constructor (exp, size)
field
=
TREE_PURPOSE
(
link
);
/* Eliminate the marker that makes a cast not be an lvalue. */
if
(
val
!=
0
&&
TREE_CODE
(
val
)
==
NON_LVALUE_EXPR
)
val
=
TREE_OPERAND
(
val
,
0
);
if
(
val
!=
0
)
STRIP_NOPS
(
val
);
if
(
field
==
0
||
!
DECL_BIT_FIELD
(
field
))
{
...
...
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