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
c24151ce
Commit
c24151ce
authored
15 years ago
by
Michael Meissner
Committed by
Michael Meissner
15 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PR bootstrap/40118
From-SVN: r147434
parent
8ce71866
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+6
-0
gcc/config/rs6000/rs6000.c
+3
-3
No files found.
gcc/ChangeLog
View file @
c24151ce
2009-05-12 Michael Meissner <meissner@linux.vnet.ibm.com>
PR bootstrap/40118
* rs6000.c (rs6000_generate_compare): Use op1b instead of
shadowing exisiting variable op1.
2009-05-12 Uros Bizjak <ubizjak@gmail.com>
PR target/37197
...
...
This diff is collapsed.
Click to expand it.
gcc/config/rs6000/rs6000.c
View file @
c24151ce
...
...
@@ -12991,13 +12991,13 @@ rs6000_generate_compare (rtx cmp, enum machine_mode mode)
else
if
(
GET_CODE
(
op1
)
==
UNSPEC
&&
XINT
(
op1
,
1
)
==
UNSPEC_SP_TEST
)
{
rtx
op1
=
XVECEXP
(
op1
,
0
,
0
);
rtx
op1
b
=
XVECEXP
(
op1
,
0
,
0
);
comp_mode
=
CCEQmode
;
compare_result
=
gen_reg_rtx
(
CCEQmode
);
if
(
TARGET_64BIT
)
emit_insn
(
gen_stack_protect_testdi
(
compare_result
,
op0
,
op1
));
emit_insn
(
gen_stack_protect_testdi
(
compare_result
,
op0
,
op1
b
));
else
emit_insn
(
gen_stack_protect_testsi
(
compare_result
,
op0
,
op1
));
emit_insn
(
gen_stack_protect_testsi
(
compare_result
,
op0
,
op1
b
));
}
else
emit_insn
(
gen_rtx_SET
(
VOIDmode
,
compare_result
,
...
...
This diff is collapsed.
Click to expand it.
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