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
a2cf7deb
Commit
a2cf7deb
authored
Feb 22, 1999
by
Craig Burley
Committed by
Craig Burley
Feb 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reduce spurious warnings using -fsyntax-only
From-SVN: r25366
parent
3c350eb3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
gcc/ChangeLog
+5
-0
gcc/stmt.c
+4
-7
No files found.
gcc/ChangeLog
View file @
a2cf7deb
Mon
Feb
22
11
:
40
:
44
1999
Craig
Burley
<
craig
@jcb
-
sc
.
com
>
Decrease
spurious
warnings
from
-
fsyntax
-
only
:
*
stmt
.
c
(
expand_expr_stmt
)
:
Expand
expr
even
when
-
fsyntax
-
only
.
Mon
Feb
22
10
:
55
:
00
1999
Gavin
Romig
-
Koch
<
gavin
@cygnus
.
com
>
*
c
-
lex
.
c
(
yylex
)
:
Replace
warning
about
integer
constants
being
...
...
gcc/stmt.c
View file @
a2cf7deb
...
...
@@ -1692,13 +1692,10 @@ expand_expr_stmt (exp)
exp
=
build1
(
ADDR_EXPR
,
build_pointer_type
(
TREE_TYPE
(
exp
)),
exp
);
last_expr_type
=
TREE_TYPE
(
exp
);
if
(
flag_syntax_only
&&
!
expr_stmts_for_value
)
last_expr_value
=
0
;
else
last_expr_value
=
expand_expr
(
exp
,
(
expr_stmts_for_value
?
NULL_RTX
:
const0_rtx
),
VOIDmode
,
0
);
last_expr_value
=
expand_expr
(
exp
,
(
expr_stmts_for_value
?
NULL_RTX
:
const0_rtx
),
VOIDmode
,
0
);
/* If all we do is reference a volatile value in memory,
copy it to a register to be sure it is actually touched. */
...
...
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