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
e323735c
Commit
e323735c
authored
Jun 14, 2001
by
Jan Hubicka
Committed by
Jan Hubicka
Jun 14, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.c (ix86_expand_prologue): Fix merging conflict.
From-SVN: r43373
parent
3ea099f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.c
+2
-2
No files found.
gcc/ChangeLog
View file @
e323735c
Thu
Jun
14
15
:
38
:
28
CEST
2001
Jan
Hubicka
<
jh
@suse
.
cz
>
*
i386
.
c
(
ix86_expand_prologue
)
:
Fix
merging
conflict
.
2001
-
06
-
14
Joseph
S
.
Myers
<
jsm28
@cam
.
ac
.
uk
>
*
doc
/
c
-
tree
.
texi
,
doc
/
contrib
.
texi
,
doc
/
extend
.
texi
,
...
...
gcc/config/i386/i386.c
View file @
e323735c
...
...
@@ -2536,11 +2536,11 @@ ix86_expand_prologue ()
if
(
allocate
==
0
)
;
else
if
(
!
TARGET_STACK_PROBE
||
frame
.
to_
allocate
<
CHECK_STACK_LIMIT
)
else
if
(
!
TARGET_STACK_PROBE
||
allocate
<
CHECK_STACK_LIMIT
)
{
insn
=
emit_insn
(
gen_pro_epilogue_adjust_stack
(
stack_pointer_rtx
,
stack_pointer_rtx
,
GEN_INT
(
-
frame
.
to_
allocate
)));
GEN_INT
(
-
allocate
)));
RTX_FRAME_RELATED_P
(
insn
)
=
1
;
}
else
...
...
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