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
064ee155
Commit
064ee155
authored
Oct 21, 2003
by
Jason Merrill
Committed by
Jason Merrill
Oct 21, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.c (build1): Fix off-by-one error.
From-SVN: r72754
parent
82c2e3d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/tree.c
+1
-1
No files found.
gcc/ChangeLog
View file @
064ee155
2003-10-21 Jason Merrill <jason@redhat.com>
* tree.c (build1): Fix off-by-one error.
2003-09-28 Robert Millan <robertmh@gnu.org>
2003-09-28 Robert Millan <robertmh@gnu.org>
* config/i386/kfreebsdgnu.h: New. i386-*-kfreebsd-gnu definitions.
* config/i386/kfreebsdgnu.h: New. i386-*-kfreebsd-gnu definitions.
...
...
gcc/tree.c
View file @
064ee155
...
@@ -2478,7 +2478,7 @@ build1 (enum tree_code code, tree type, tree node)
...
@@ -2478,7 +2478,7 @@ build1 (enum tree_code code, tree type, tree node)
TREE_SIDE_EFFECTS
(
t
)
=
0
;
TREE_SIDE_EFFECTS
(
t
)
=
0
;
if
(
!
DECL_P
(
node
))
if
(
!
DECL_P
(
node
))
{
{
int
i
=
first_rtl_op
(
TREE_CODE
(
node
));
int
i
=
first_rtl_op
(
TREE_CODE
(
node
))
-
1
;
for
(;
i
>=
0
;
--
i
)
for
(;
i
>=
0
;
--
i
)
{
{
if
(
TREE_SIDE_EFFECTS
(
TREE_OPERAND
(
node
,
i
)))
if
(
TREE_SIDE_EFFECTS
(
TREE_OPERAND
(
node
,
i
)))
...
...
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