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
35fc1624
Commit
35fc1624
authored
Nov 19, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(output_function_profiler): When TARGET_MINIMAL_TOC,
emit .long instead of .tc. From-SVN: r6116
parent
9d853307
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/config/rs6000/rs6000.c
+5
-2
No files found.
gcc/config/rs6000/rs6000.c
View file @
35fc1624
...
@@ -1973,8 +1973,11 @@ output_function_profiler (file, labelno)
...
@@ -1973,8 +1973,11 @@ output_function_profiler (file, labelno)
/* Set up a TOC entry for the profiler label. */
/* Set up a TOC entry for the profiler label. */
toc_section
();
toc_section
();
fprintf
(
file
,
"LPC..%d:
\n\t
.tc
\t
LP..%d[TC],LP..%d
\n
"
,
if
(
TARGET_MINIMAL_TOC
)
labelno
,
labelno
,
labelno
);
fprintf
(
file
,
"LPC..%d:
\n\t
.long LP..%d
\n
"
,
labelno
,
labelno
);
else
fprintf
(
file
,
"LPC..%d:
\n\t
.tc
\t
LP..%d[TC],LP..%d
\n
"
,
labelno
,
labelno
,
labelno
);
text_section
();
text_section
();
/* Figure out last used parameter register. The proper thing to do is
/* Figure out last used parameter register. The proper thing to do is
...
...
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