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
b0dd4808
Commit
b0dd4808
authored
Jun 20, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
Jun 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (subst): Be prepared for simplify_subreg to return VOIDmode.
From-SVN: r54839
parent
04a704a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
gcc/ChangeLog
+4
-0
gcc/combine.c
+2
-3
No files found.
gcc/ChangeLog
View file @
b0dd4808
Thu Jun 20 17:25:29 CEST 2002 JAn HUbicka <jh@suse.cz>
* combine.c (subst): Be prepared for simplify_subreg to return VOIDmode.
2002-06-20 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
2002-06-20 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* config/sol2.h: New file.
* config/sol2.h: New file.
...
...
gcc/combine.c
View file @
b0dd4808
...
@@ -3533,14 +3533,13 @@ subst (x, from, to, in_dest, unique_copy)
...
@@ -3533,14 +3533,13 @@ subst (x, from, to, in_dest, unique_copy)
if
(
GET_CODE
(
new
)
==
CONST_INT
&&
GET_CODE
(
x
)
==
SUBREG
)
if
(
GET_CODE
(
new
)
==
CONST_INT
&&
GET_CODE
(
x
)
==
SUBREG
)
{
{
if
(
VECTOR_MODE_P
(
GET_MODE
(
x
)))
enum
machine_mode
mode
=
GET_MODE
(
x
);
return
gen_rtx_CLOBBER
(
VOIDmode
,
const0_rtx
);
x
=
simplify_subreg
(
GET_MODE
(
x
),
new
,
x
=
simplify_subreg
(
GET_MODE
(
x
),
new
,
GET_MODE
(
SUBREG_REG
(
x
)),
GET_MODE
(
SUBREG_REG
(
x
)),
SUBREG_BYTE
(
x
));
SUBREG_BYTE
(
x
));
if
(
!
x
)
if
(
!
x
)
abort
(
);
x
=
gen_rtx_CLOBBER
(
mode
,
const0_rtx
);
}
}
else
if
(
GET_CODE
(
new
)
==
CONST_INT
else
if
(
GET_CODE
(
new
)
==
CONST_INT
&&
GET_CODE
(
x
)
==
ZERO_EXTEND
)
&&
GET_CODE
(
x
)
==
ZERO_EXTEND
)
...
...
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