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
be98e709
Commit
be98e709
authored
Aug 30, 1996
by
Stan Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(override_options): Don't thread the prologue if profiling.
From-SVN: r12681
parent
8584b866
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
gcc/config/i386/i386.c
+3
-1
No files found.
gcc/config/i386/i386.c
View file @
be98e709
...
...
@@ -310,7 +310,8 @@ override_options ()
flag_omit_frame_pointer
=
1
;
/* pic references don't explicitly mention pic_offset_table_rtx */
if
(
flag_pic
)
/* code threaded into the prologue may conflict with profiling */
if
(
flag_pic
||
profile_flag
||
profile_block_flag
)
target_flags
&=
~
MASK_SCHEDULE_PROLOGUE
;
}
...
...
@@ -3619,6 +3620,7 @@ output_float_compare (insn, operands)
xops
[
0
]
=
operands
[
0
];
xops
[
1
]
=
operands
[
1
];
xops
[
2
]
=
operands
[
0
];
output_asm_insn
(
strcat
(
buf
,
AS2
(
%
z1
,
%
y1
,
%
2
)),
xops
);
RET
;
}
...
...
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