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
2db98b5a
Commit
2db98b5a
authored
Sep 08, 2017
by
Eric Botcazou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix merge error.
From-SVN: r251862
parent
42bbab4c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
16 deletions
+0
-16
gcc/ada/ChangeLog
+0
-5
gcc/ada/gcc-interface/trans.c
+0
-11
No files found.
gcc/ada/ChangeLog
View file @
2db98b5a
...
...
@@ -533,11 +533,6 @@
*
sem_ch5
.
adb
(
Analyze_Block_Statement
):
Revert
previous
change
.
*
sem_warn
.
adb
(
Check_References
):
Revert
previous
change
.
2017
-
09
-
06
Eric
Botcazou
<
ebotcazou
@
adacore
.
com
>
*
gcc
-
interface
/
trans
.
c
(
gnat_to_gnu
)
<
N_Selected_Component
>:
Try
again
to
translate
the
prefix
after
the
field
if
it
is
incomplete
.
2017
-
09
-
06
Bob
Duff
<
duff
@
adacore
.
com
>
*
exp_util
.
adb
(
Is_Displace_Call
):
Make
sure
it
works
for
indirect
...
...
gcc/ada/gcc-interface/trans.c
View file @
2db98b5a
...
...
@@ -6465,17 +6465,6 @@ gnat_to_gnu (Node_Id gnat_node)
{
tree
gnu_field
=
gnat_to_gnu_field_decl
(
gnat_field
);
/* If the prefix has incomplete type, try again to translate it.
The idea is that the translation of the field just above may
have completed it through gnat_to_gnu_entity, in case it is
the dereference of an access to Taft Amendment type used in
the instantiation of a generic body from an external unit. */
if
(
!
COMPLETE_TYPE_P
(
TREE_TYPE
(
gnu_prefix
)))
{
gnu_prefix
=
gnat_to_gnu
(
gnat_prefix
);
gnu_prefix
=
maybe_implicit_deref
(
gnu_prefix
);
}
gnu_result
=
build_component_ref
(
gnu_prefix
,
gnu_field
,
(
Nkind
(
Parent
(
gnat_node
))
...
...
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