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
20634be2
Commit
20634be2
authored
Oct 27, 1992
by
Timothy Moore
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ASM_GLOBALIZE_LABEL): Give function symbols CODE type,
others DATA type.. From-SVN: r2621
parent
2a406d2a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
+4
-1
gcc/config/pa/pa.h
+4
-1
No files found.
gcc/config/pa/pa.h
View file @
20634be2
...
@@ -1554,7 +1554,10 @@ bss_section () \
...
@@ -1554,7 +1554,10 @@ bss_section () \
#define ASM_GLOBALIZE_LABEL(FILE, NAME) \
#define ASM_GLOBALIZE_LABEL(FILE, NAME) \
do { fputs ("\t.EXPORT ", FILE); assemble_name (FILE, NAME); \
do { fputs ("\t.EXPORT ", FILE); assemble_name (FILE, NAME); \
fputs ("\n", FILE);} while (0)
if (FUNCTION_NAME_P (NAME)) \
fputs (",CODE\n", FILE); \
else \
fputs (",DATA\n", FILE);} while (0)
/* This is how to output a reference to a user-level label named NAME.
/* This is how to output a reference to a user-level label named NAME.
`assemble_name' uses this. */
`assemble_name' uses this. */
...
...
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