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
f3f72ea0
Commit
f3f72ea0
authored
May 22, 2003
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finish correcting inadvertent checkin.
From-SVN: r67107
parent
eaf5fde9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/expr.c
+3
-3
No files found.
gcc/expr.c
View file @
f3f72ea0
...
...
@@ -5799,7 +5799,7 @@ get_inner_reference (exp, pbitsize, pbitpos, poffset, pmode,
made during type construction. */
if
(
this_offset
==
0
)
break
;
else
if
(
CONTAINS_PLACEHOLDER_P
(
this_offset
))
else
if
(
contains_placeholder_p
(
this_offset
))
this_offset
=
build
(
WITH_RECORD_EXPR
,
sizetype
,
this_offset
,
exp
);
offset
=
size_binop
(
PLUS_EXPR
,
offset
,
this_offset
);
...
...
@@ -5829,9 +5829,9 @@ get_inner_reference (exp, pbitsize, pbitpos, poffset, pmode,
/* If the index has a self-referential type, pass it to a
WITH_RECORD_EXPR; if the component size is, pass our
component to one. */
if
(
CONTAINS_PLACEHOLDER_P
(
index
))
if
(
contains_placeholder_p
(
index
))
index
=
build
(
WITH_RECORD_EXPR
,
TREE_TYPE
(
index
),
index
,
exp
);
if
(
CONTAINS_PLACEHOLDER_P
(
unit_size
))
if
(
contains_placeholder_p
(
unit_size
))
unit_size
=
build
(
WITH_RECORD_EXPR
,
sizetype
,
unit_size
,
array
);
offset
=
size_binop
(
PLUS_EXPR
,
offset
,
...
...
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