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
40e48138
Commit
40e48138
authored
Mar 09, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Mar 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ifcvt.c (noce_emit_move_insn): Remove inmode.
From-SVN: r96166
parent
5758c0f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
gcc/ChangeLog
+2
-0
gcc/ifcvt.c
+1
-2
No files found.
gcc/ChangeLog
View file @
40e48138
...
...
@@ -8,6 +8,8 @@
* fold-const.c (int_const_binop): Remove no_overflow.
* ifcvt.c (noce_emit_move_insn): Remove inmode.
2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed
...
...
gcc/ifcvt.c
View file @
40e48138
...
...
@@ -683,7 +683,7 @@ noce_emit_store_flag (struct noce_if_info *if_info, rtx x, int reversep,
static
void
noce_emit_move_insn
(
rtx
x
,
rtx
y
)
{
enum
machine_mode
outmode
,
inmode
;
enum
machine_mode
outmode
;
rtx
outer
,
inner
;
int
bitpos
;
...
...
@@ -696,7 +696,6 @@ noce_emit_move_insn (rtx x, rtx y)
outer
=
XEXP
(
x
,
0
);
inner
=
XEXP
(
outer
,
0
);
outmode
=
GET_MODE
(
outer
);
inmode
=
GET_MODE
(
inner
);
bitpos
=
SUBREG_BYTE
(
outer
)
*
BITS_PER_UNIT
;
store_bit_field
(
inner
,
GET_MODE_BITSIZE
(
outmode
),
bitpos
,
outmode
,
y
);
}
...
...
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