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
798a3935
Commit
798a3935
authored
Apr 14, 2003
by
Douglas B Rupp
Committed by
Richard Kenner
Apr 14, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ifcvt.c (noce_process_if_block): Fail on BLKmode move.
From-SVN: r65596
parent
0d3c8800
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/ifcvt.c
+1
-1
No files found.
gcc/ChangeLog
View file @
798a3935
2003-04-14 Douglas B Rupp <rupp@gnat.com>
* ifcvt.c (noce_process_if_block): Fail on BLKmode move.
2003-04-14 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2003-04-14 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* stor-layout.c (layout_type, case ARRAY_TYPE): Add missing code to
* stor-layout.c (layout_type, case ARRAY_TYPE): Add missing code to
...
...
gcc/ifcvt.c
View file @
798a3935
...
@@ -1829,7 +1829,7 @@ noce_process_if_block (ce_info)
...
@@ -1829,7 +1829,7 @@ noce_process_if_block (ce_info)
||
(
SMALL_REGISTER_CLASSES
||
(
SMALL_REGISTER_CLASSES
&&
REGNO
(
x
)
<
FIRST_PSEUDO_REGISTER
))
&&
REGNO
(
x
)
<
FIRST_PSEUDO_REGISTER
))
{
{
if
(
no_new_pseudos
)
if
(
no_new_pseudos
||
GET_MODE
(
x
)
==
BLKmode
)
return
FALSE
;
return
FALSE
;
x
=
gen_reg_rtx
(
GET_MODE
(
GET_CODE
(
x
)
==
STRICT_LOW_PART
x
=
gen_reg_rtx
(
GET_MODE
(
GET_CODE
(
x
)
==
STRICT_LOW_PART
?
XEXP
(
x
,
0
)
:
x
));
?
XEXP
(
x
,
0
)
:
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