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
5c45425b
Commit
5c45425b
authored
Jun 17, 2002
by
Richard Henderson
Committed by
Richard Henderson
Jun 17, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expmed.c (make_tree): Handle SIGN_EXTEND/ZERO_EXTEND.
From-SVN: r54716
parent
9aa497ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
gcc/ChangeLog
+5
-0
gcc/expmed.c
+7
-0
No files found.
gcc/ChangeLog
View file @
5c45425b
2002-06-17 Richard Henderson <rth@redhat.com>
PR target/6922
* expmed.c (make_tree): Handle SIGN_EXTEND/ZERO_EXTEND.
2002-06-17 Tom Tromey <tromey@redhat.com>
* dwarfout.c: Include function.h.
...
...
gcc/expmed.c
View file @
5c45425b
...
...
@@ -4136,6 +4136,13 @@ make_tree (type, x)
build
(
TRUNC_DIV_EXPR
,
t
,
make_tree
(
t
,
XEXP
(
x
,
0
)),
make_tree
(
t
,
XEXP
(
x
,
1
)))));
case
SIGN_EXTEND
:
case
ZERO_EXTEND
:
t
=
(
*
lang_hooks
.
types
.
type_for_mode
)
(
GET_MODE
(
XEXP
(
x
,
0
)),
GET_CODE
(
x
)
==
ZERO_EXTEND
);
return
fold
(
convert
(
type
,
make_tree
(
t
,
XEXP
(
x
,
0
))));
default
:
t
=
make_node
(
RTL_EXPR
);
TREE_TYPE
(
t
)
=
type
;
...
...
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