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
00244e6b
Commit
00244e6b
authored
Feb 25, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(if_then_else_cond): Fix typo in narrowing of a SUBREG.
From-SVN: r6624
parent
59e60927
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
gcc/combine.c
+3
-4
No files found.
gcc/combine.c
View file @
00244e6b
...
...
@@ -6238,11 +6238,10 @@ if_then_else_cond (x, ptrue, pfalse)
&&
0
!=
(
cond0
=
if_then_else_cond
(
SUBREG_REG
(
x
),
&
true0
,
&
false0
)))
{
enum
machine_mode
inner_mode
=
GET_MODE
(
SUBREG_REG
(
x
));
unsigned
HOST_WIDE_INT
mask
=
GET_MODE_MASK
(
inner_mode
);
*
ptrue
=
force_to_mode
(
true0
,
mode
,
GET_MODE_MASK
(
mode
),
NULL_RTX
,
0
);
*
pfalse
=
force_to_mode
(
false0
,
mode
,
GET_MODE_MASK
(
mode
),
NULL_RTX
,
0
);
*
ptrue
=
force_to_mode
(
true0
,
inner_mode
,
mask
,
NULL_RTX
,
0
);
*
pfalse
=
force_to_mode
(
false0
,
inner_mode
,
mask
,
NULL_RTX
,
0
);
return
cond0
;
}
...
...
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