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
d46c6fce
Commit
d46c6fce
authored
May 01, 1997
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mips_asm_file_start): Use new macro TARGET_FILE_SWITCHING.
(mips_asm_file_end): Likewise. From-SVN: r14005
parent
33b5e50b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
gcc/config/mips/mips.c
+3
-7
No files found.
gcc/config/mips/mips.c
View file @
d46c6fce
...
...
@@ -4564,13 +4564,9 @@ mips_asm_file_start (stream)
fprintf
(
stream
,
"
\t
.section
\t
.text
\n
"
);
/* This code exists so that we can put all externs before all symbol
references. This is necessary for the assembler's global pointer
references. This is necessary for the
MIPS
assembler's global pointer
optimizations to work. */
/* ??? Current versions of gas do not require that externs occur before
symbol references. This means that this code is unnecessary when
gas is being used. This gas feature hasn't been well tested as yet
though. */
if
(
TARGET_GP_OPT
)
if
(
TARGET_FILE_SWITCHING
)
{
asm_out_data_file
=
stream
;
asm_out_text_file
=
make_temp_file
();
...
...
@@ -4629,7 +4625,7 @@ mips_asm_file_end (file)
}
}
if
(
TARGET_
GP_OPT
)
if
(
TARGET_
FILE_SWITCHING
)
{
fprintf
(
file
,
"
\n\t
.text
\n
"
);
rewind
(
asm_out_text_file
);
...
...
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