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
6f573ff9
Commit
6f573ff9
authored
Sep 16, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Sep 15, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* rs6000.c (output_epilogue): Handle Chill.
From-SVN: r22443
parent
e7d99f1e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+2
-0
gcc/config/rs6000/rs6000.c
+4
-1
No files found.
gcc/ChangeLog
View file @
6f573ff9
...
...
@@ -9,6 +9,8 @@ Wed Sep 16 00:30:56 1998 Geoff Keating <geoffk@ozemail.com.au>
Tue
Sep
15
22
:
59
:
52
1998
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
rs6000
.
c
(
output_epilogue
)
:
Handle
Chill
.
*
mn10200
.
h
(
ASM_OUTPUT_DWARF2_ADDR_CONST
)
:
Define
.
*
mn10300
.
h
(
ASM_OUTPUT_DWARF2_ADDR_CONST
)
:
Define
.
...
...
gcc/config/rs6000/rs6000.c
View file @
6f573ff9
...
...
@@ -4254,7 +4254,8 @@ output_epilog (file, size)
official way to get this info, so we use language_string. C
is 0. C++ is 9. No number defined for Obj-C, so use the
value for C for now. There is no official value for Java,
although IBM appears to be using 13. */
although IBM appears to be using 13. There is no official value
for Chill, so we've choosen 44 pseudo-randomly. */
if
(
!
strcmp
(
language_string
,
"GNU C"
)
||
!
strcmp
(
language_string
,
"GNU Obj-C"
))
i
=
0
;
...
...
@@ -4268,6 +4269,8 @@ output_epilog (file, size)
i
=
9
;
else
if
(
!
strcmp
(
language_string
,
"GNU Java"
))
i
=
13
;
else
if
(
!
strcmp
(
language_string
,
"GNU CHILL"
))
i
=
44
;
else
abort
();
fprintf
(
file
,
"%d,"
,
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