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
e64ff103
Commit
e64ff103
authored
Sep 21, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(subst): Set and compare extend_op with 0, not NULL.
From-SVN: r2196
parent
8fed83ff
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 @
e64ff103
...
@@ -3561,7 +3561,7 @@ subst (x, from, to, in_dest, unique_copy)
...
@@ -3561,7 +3561,7 @@ subst (x, from, to, in_dest, unique_copy)
?
const1_rtx
:
constm1_rtx
);
?
const1_rtx
:
constm1_rtx
);
rtx
c
=
0
;
rtx
c
=
0
;
enum
machine_mode
m
=
mode
;
enum
machine_mode
m
=
mode
;
enum
rtx_code
op
,
extend_op
=
NULL
;
enum
rtx_code
op
,
extend_op
=
0
;
if
((
GET_CODE
(
nz
)
==
PLUS
||
GET_CODE
(
nz
)
==
MINUS
if
((
GET_CODE
(
nz
)
==
PLUS
||
GET_CODE
(
nz
)
==
MINUS
||
GET_CODE
(
nz
)
==
IOR
||
GET_CODE
(
nz
)
==
XOR
||
GET_CODE
(
nz
)
==
IOR
||
GET_CODE
(
nz
)
==
XOR
...
@@ -3621,7 +3621,7 @@ subst (x, from, to, in_dest, unique_copy)
...
@@ -3621,7 +3621,7 @@ subst (x, from, to, in_dest, unique_copy)
temp
=
gen_binary
(
op
,
m
,
gen_lowpart_for_combine
(
m
,
z
),
temp
);
temp
=
gen_binary
(
op
,
m
,
gen_lowpart_for_combine
(
m
,
z
),
temp
);
if
(
extend_op
!=
NULL
)
if
(
extend_op
!=
0
)
temp
=
gen_unary
(
extend_op
,
mode
,
temp
);
temp
=
gen_unary
(
extend_op
,
mode
,
temp
);
return
temp
;
return
temp
;
...
...
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