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
4eb2cb10
Commit
4eb2cb10
authored
Feb 02, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(find_split_point, case SET): Fix error in last change.
From-SVN: r13579
parent
cd56d9fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gcc/combine.c
+2
-2
No files found.
gcc/combine.c
View file @
4eb2cb10
...
...
@@ -2674,7 +2674,7 @@ find_split_point (loc, insn)
is known to be on, this can be converted into a NEG of a shift. */
if
(
STORE_FLAG_VALUE
==
-
1
&&
XEXP
(
SET_SRC
(
x
),
1
)
==
const0_rtx
&&
GET_MODE
(
SET_SRC
(
x
))
==
GET_MODE
(
XEXP
(
SET_SRC
(
x
),
0
))
&&
1
<=
(
len
=
exact_log2
&&
1
<=
(
pos
=
exact_log2
(
nonzero_bits
(
XEXP
(
SET_SRC
(
x
),
0
),
GET_MODE
(
XEXP
(
SET_SRC
(
x
),
0
))))))
{
...
...
@@ -2684,7 +2684,7 @@ find_split_point (loc, insn)
gen_rtx_combine
(
NEG
,
mode
,
gen_rtx_combine
(
LSHIFTRT
,
mode
,
XEXP
(
SET_SRC
(
x
),
0
),
GEN_INT
(
len
))));
GEN_INT
(
pos
))));
split
=
find_split_point
(
&
SET_SRC
(
x
),
insn
);
if
(
split
&&
split
!=
&
SET_SRC
(
x
))
...
...
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