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
09482e0d
Commit
09482e0d
authored
Jun 28, 2001
by
Jim Wilson
Committed by
Jim Wilson
Jun 27, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ia64-linux bootstrap failure.
* emit-rtl.c (gen_highpart): Call validize_mem. From-SVN: r43627
parent
eb559363
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
gcc/ChangeLog
+4
-0
gcc/emit-rtl.c
+7
-0
No files found.
gcc/ChangeLog
View file @
09482e0d
2001
-
06
-
27
Jim
Wilson
<
wilson
@redhat
.
com
>
*
emit
-
rtl
.
c
(
gen_highpart
)
:
Call
validize_mem
.
2001
-
06
-
27
Bruce
Korb
<
bkorb
@gnu
.
org
>
*
fixinc
/
inclhack
.
def
(
hpux11_cpp_pow_inline
)
:
new
,
but
real
similar
to
...
...
gcc/emit-rtl.c
View file @
09482e0d
...
...
@@ -1135,6 +1135,13 @@ gen_highpart (mode, x)
result
=
simplify_gen_subreg
(
mode
,
x
,
GET_MODE
(
x
),
subreg_highpart_offset
(
mode
,
GET_MODE
(
x
)));
/* simplify_gen_subreg is not guaranteed to return a valid operand for
the target if we have a MEM. gen_highpart must return a valid operand,
emitting code if necessary to do so. */
if
(
GET_CODE
(
result
)
==
MEM
)
result
=
validize_mem
(
result
);
if
(
!
result
)
abort
();
return
result
;
...
...
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