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
e3c62520
Commit
e3c62520
authored
22 years ago
by
J"orn Rennecke
Committed by
Joern Rennecke
22 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sh.md (ffssi2): Fix emitted code.
From-SVN: r57984
parent
0c479bf5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
6 deletions
+11
-6
gcc/ChangeLog
+4
-0
gcc/config/sh/sh.md
+7
-6
No files found.
gcc/ChangeLog
View file @
e3c62520
Wed
Oct
9
15
:
54
:
49
2002
J
"orn Rennecke <joern.rennecke@superh.com>
* sh.md (ffssi2): Fix emitted code.
2002-10-09 Ulrich Weigand <uweigand@de.ibm.com>
* cse.c (insn_live_p): Pass insn pattern, not full insn
...
...
This diff is collapsed.
Click to expand it.
gcc/config/sh/sh.md
View file @
e3c62520
...
...
@@ -10380,14 +10380,15 @@
rtx discratch = gen_reg_rtx (DImode);
rtx last;
emit_insn (gen_adddi3z_media (discratch, operands
[
1
]
,
force_reg (SImode, GEN_INT (-1))));
emit_insn (gen_andcdi3 (discratch, discratch,
simplify_gen_subreg (DImode, operands
[
1
]
,
SImode, 0)));
emit_insn (gen_adddi3 (discratch,
simplify_gen_subreg (DImode, operands
[
1
]
, SImode, 0),
GEN_INT (-1)));
emit_insn (gen_andcdi3 (discratch,
simplify_gen_subreg (DImode, operands
[
1
]
, SImode, 0),
discratch));
emit_insn (gen_nsbsi (scratch, discratch));
last = emit_insn (gen_subsi3 (operands
[
0
]
,
force_reg (SImode, GEN_INT (
-64
)), scratch));
force_reg (SImode, GEN_INT (
63
)), scratch));
REG_NOTES (last)
= gen_rtx_EXPR_LIST (REG_EQUAL,
gen_rtx_FFS (SImode, operands
[
0
]
), REG_NOTES (last));
...
...
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