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
f1a85fe7
Commit
f1a85fe7
authored
Aug 01, 2014
by
Robert Dewar
Committed by
Arnaud Charlet
Aug 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc-interface/decl.c, gcc-interface/trans.c: Remove VMS handling.
From-SVN: r213415
parent
ea0c8cfb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
16 deletions
+8
-16
gcc/ada/ChangeLog
+1
-0
gcc/ada/gcc-interface/decl.c
+7
-9
gcc/ada/gcc-interface/trans.c
+0
-7
No files found.
gcc/ada/ChangeLog
View file @
f1a85fe7
...
...
@@ -10,6 +10,7 @@
sem_util
.
ads
,
exp_ch4
.
adb
,
exp_ch11
.
adb
,
exp_ch6
.
adb
,
cstand
.
adb
,
sem_mech
.
adb
,
sem_ch6
.
adb
,
sem_ch8
.
adb
,
sem_ch11
.
adb
,
snames
.
ads
-
tmpl
:
Remove
VMS
-
specific
code
.
*
gcc
-
interface
/
decl
.
c
,
gcc
-
interface
/
trans
.
c
:
Ditto
.
2014
-
08
-
01
Arnaud
Charlet
<
charlet
@
adacore
.
com
>
...
...
gcc/ada/gcc-interface/decl.c
View file @
f1a85fe7
...
...
@@ -1432,15 +1432,13 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition)
gnu_expr
=
convert
(
gnu_type
,
gnu_expr
);
/* If this name is external or there was a name specified, use it,
unless this is a VMS exception object since this would conflict
with the symbol we need to export in addition. Don't use the
Interface_Name if there is an address clause (see CD30005). */
if
(
!
Is_VMS_Exception
(
gnat_entity
)
&&
((
Present
(
Interface_Name
(
gnat_entity
))
&&
No
(
Address_Clause
(
gnat_entity
)))
||
(
Is_Public
(
gnat_entity
)
&&
(
!
Is_Imported
(
gnat_entity
)
||
Is_Exported
(
gnat_entity
)))))
Don't use the Interface_Name if there is an address clause
(see CD30005). */
if
((
Present
(
Interface_Name
(
gnat_entity
))
&&
No
(
Address_Clause
(
gnat_entity
)))
||
(
Is_Public
(
gnat_entity
)
&&
(
!
Is_Imported
(
gnat_entity
)
||
Is_Exported
(
gnat_entity
))))
gnu_ext_name
=
create_concat_name
(
gnat_entity
,
NULL
);
/* If this is an aggregate constant initialized to a constant, force it
...
...
gcc/ada/gcc-interface/trans.c
View file @
f1a85fe7
...
...
@@ -5484,13 +5484,6 @@ gnat_to_gnu (Node_Id gnat_node)
gcc_assert
(
!
TREE_OVERFLOW
(
gnu_result
));
}
/* Convert the Ureal to a vax float (represented on a signed type). */
else
if
(
Vax_Float
(
Underlying_Type
(
Etype
(
gnat_node
))))
{
gnu_result
=
UI_To_gnu
(
Get_Vax_Real_Literal_As_Signed
(
gnat_node
),
gnu_result_type
);
}
else
{
Ureal
ur_realval
=
Realval
(
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