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
a59fb797
Commit
a59fb797
authored
Jun 24, 1998
by
Klaus Kaempf
Committed by
Richard Henderson
Jun 24, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alpha.md (call_vms, call_value_vms): Strip leading * from symbol.
From-SVN: r20703
parent
bc57e970
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
gcc/ChangeLog
+4
-0
gcc/config/alpha/alpha.md
+10
-4
No files found.
gcc/ChangeLog
View file @
a59fb797
Wed Jun 24 17:55:15 1998 Klaus Kaempf <kkaempf@progis.de>
* alpha.md (call_vms, call_value_vms): Strip leading * from symbol.
Wed Jun 24 16:27:23 1998 John Carr <jfc@mit.edu>
* expr.c (get_memory_rtx): New function.
...
...
gcc/config/alpha/alpha.md
View file @
a59fb797
...
...
@@ -3553,10 +3553,13 @@
if (GET_CODE (operands
[
0
]
) == SYMBOL_REF)
{
extern char
*
savealloc ();
char
*
symbol = XSTR (operands
[
0
]
, 0);
char
*
linksym = savealloc (strlen (symbol) + 6);
char
*linksym, *
symbol = XSTR (operands
[
0
]
, 0);
rtx linkage;
if (*symbol == '*')
symbol++;
linksym = savealloc (strlen (symbol) + 6);
alpha_need_linkage (symbol, 0);
linksym[0] = '$';
...
...
@@ -3658,10 +3661,13 @@
if (GET_CODE (operands
[
1
]
) == SYMBOL_REF)
{
extern char
*
savealloc ();
char
*
symbol = XSTR (operands
[
1
]
, 0);
char
*
linksym = savealloc (strlen (symbol) + 6);
char
*linksym, *
symbol = XSTR (operands
[
1
]
, 0);
rtx linkage;
if (*symbol == '*')
symbol++;
linksym = savealloc (strlen (symbol) + 6);
alpha_need_linkage (symbol, 0);
linksym[0] = '$';
strcpy (linksym+1, symbol);
...
...
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