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
d6020413
Commit
d6020413
authored
May 26, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1093
parent
c753237d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletions
+17
-1
gcc/emit-rtl.c
+17
-1
No files found.
gcc/emit-rtl.c
View file @
d6020413
...
...
@@ -563,12 +563,28 @@ gen_lowpart_common (mode, x)
/* If X is an integral constant but we want it in floating-point, it
must be the case that we have a union of an integer and a floating-point
value. If the machine-parameters allow it, simulate that union here
and return the result. */
and return the result. The two-word and single-word cases are
different. */
else
if
(((
HOST_FLOAT_FORMAT
==
TARGET_FLOAT_FORMAT
&&
HOST_BITS_PER_INT
==
BITS_PER_WORD
)
||
flag_pretend_float
)
&&
GET_MODE_CLASS
(
mode
)
==
MODE_FLOAT
&&
GET_MODE_SIZE
(
mode
)
==
UNITS_PER_WORD
&&
GET_CODE
(
x
)
==
CONST_INT
&&
sizeof
(
float
)
*
HOST_BITS_PER_CHAR
==
HOST_BITS_PER_INT
)
{
union
{
int
i
;
float
d
;
}
u
;
u
.
i
=
INTVAL
(
x
);
return
immed_real_const_1
(
u
.
d
,
mode
);
}
else
if
(((
HOST_FLOAT_FORMAT
==
TARGET_FLOAT_FORMAT
&&
HOST_BITS_PER_INT
==
BITS_PER_WORD
)
||
flag_pretend_float
)
&&
GET_MODE_CLASS
(
mode
)
==
MODE_FLOAT
&&
GET_MODE_SIZE
(
mode
)
==
2
*
UNITS_PER_WORD
&&
(
GET_CODE
(
x
)
==
CONST_INT
||
GET_CODE
(
x
)
==
CONST_DOUBLE
)
&&
GET_MODE
(
x
)
==
VOIDmode
&&
sizeof
(
double
)
*
HOST_BITS_PER_CHAR
==
2
*
HOST_BITS_PER_INT
)
...
...
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