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
1fd5360d
Commit
1fd5360d
authored
Dec 07, 2005
by
J"orn Rennecke
Committed by
Joern Rennecke
Dec 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (force_operand): Use convert_to_mode for conversions.
From-SVN: r108196
parent
444aea52
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletions
+17
-1
gcc/ChangeLog
+4
-0
gcc/expr.c
+13
-1
No files found.
gcc/ChangeLog
View file @
1fd5360d
2005
-
12
-
07
J
"orn Rennecke <joern.rennecke@st.com>
* expr.c (force_operand): Use convert_to_mode for conversions.
2005-12-07 J"
orn
Rennecke
<
joern
.
rennecke
@st
.
com
>
*
reload
.
h
(
reg_equiv_invariant
)
:
Declare
.
*
reload
.
c
(
refers_to_regno_for_reload_p
)
:
Allow
R
to
be
a
pseudo
register
also
when
reg_equiv_invariant
[
R
]
is
set
.
...
...
gcc/expr.c
View file @
1fd5360d
...
...
@@ -5867,8 +5867,20 @@ force_operand (rtx value, rtx target)
}
if
(
UNARY_P
(
value
))
{
int
unsignedp
=
0
;
op1
=
force_operand
(
XEXP
(
value
,
0
),
NULL_RTX
);
return
expand_simple_unop
(
GET_MODE
(
value
),
code
,
op1
,
target
,
0
);
switch
(
code
)
{
case
ZERO_EXTEND
:
case
UNSIGNED_FIX
:
case
UNSIGNED_FLOAT
:
unsignedp
=
1
;
/* fall through. */
case
TRUNCATE
:
case
SIGN_EXTEND
:
case
FIX
:
case
FLOAT
:
return
convert_to_mode
(
GET_MODE
(
value
),
op1
,
unsignedp
);
default
:
return
expand_simple_unop
(
GET_MODE
(
value
),
code
,
op1
,
target
,
0
);
}
}
#ifdef INSN_SCHEDULING
...
...
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