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
7160dd0c
Commit
7160dd0c
authored
32 years ago
by
Charles Hannum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
entered into RCS
From-SVN: r1036
parent
21331ed7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
gcc/config/svr3.h
+8
-7
No files found.
gcc/config/svr3.h
View file @
7160dd0c
...
...
@@ -165,12 +165,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
PREFIX is the class of label and NUM is the number within the class.
For most svr3 systems, the convention is that any symbol which begins
with a period is not put into the linker symbol table by the assembler.
*/
with a period is not put into the linker symbol table by the assembler. */
#undef ASM_OUTPUT_INTERNAL_LABEL
#define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM) \
fprintf (FILE, ".
%s%d:\n", PREFIX, NUM)
asm_fprintf (FILE, "%0L
%s%d:\n", PREFIX, NUM)
/* This is how to store into the string LABEL
the symbol_ref name of an internal numbered label where
...
...
@@ -178,12 +177,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
This is suitable for output with `assemble_name'.
For most svr3 systems, the convention is that any symbol which begins
with a period is not put into the linker symbol table by the assembler.
*/
with a period is not put into the linker symbol table by the assembler. */
#undef ASM_GENERATE_INTERNAL_LABEL
#define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \
sprintf (LABEL, ".%s%d", PREFIX, NUM)
sprintf (LABEL, "*%s%s%d", LOCAL_LABEL_PREFIX, PREFIX, NUM)
/* We want local labels to start with period if made with asm_fprintf. */
#undef LOCAL_LABEL_PREFIX
#define LOCAL_LABEL_PREFIX "."
/* Support const sections and the ctors and dtors sections for g++.
Note that there appears to be two different ways to support const
...
...
@@ -237,7 +239,6 @@ do { \
func_ptr *p, *beg = alloca (0); \
for (p = beg; *p; ) \
(*p++) (); \
#endif \
} while (0)
#endif
/* STACK_GROWS_DOWNWARD */
...
...
This diff is collapsed.
Click to expand it.
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