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
24ba1fb8
Commit
24ba1fb8
authored
May 24, 1995
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make compatible with new rs6000 change.
From-SVN: r9796
parent
938937d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
gcc/config/rs6000/sysv4.h
+10
-2
No files found.
gcc/config/rs6000/sysv4.h
View file @
24ba1fb8
...
...
@@ -302,6 +302,13 @@ extern int rs6000_pic_labelno;
#define DBX_DEBUGGING_INFO
#define DWARF_DEBUGGING_INFO
/* This macro gets just the user-specified name
out of the string in a SYMBOL_REF. Discard
a leading * */
#undef STRIP_NAME_ENCODING
#define STRIP_NAME_ENCODING(VAR,SYMBOL_NAME) \
(VAR) = ((SYMBOL_NAME) + ((SYMBOL_NAME)[0] == '*'))
/* Like block addresses, stabs line numbers are relative to the
current function. */
...
...
@@ -310,10 +317,11 @@ extern int rs6000_pic_labelno;
do \
{ \
static int sym_lineno = 1; \
char *_p; \
fprintf (file, "\t.stabn 68,0,%d,.LM%d-", \
line, sym_lineno); \
assemble_name (file,
\
XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));
\
STRIP_NAME_ENCODING (_p, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));
\
assemble_name (file, _p);
\
fprintf (file, "\n.LM%d:\n", sym_lineno); \
sym_lineno += 1; \
} \
...
...
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