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
81d79e2c
Commit
81d79e2c
authored
Sep 18, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(convert_move): Use emit_library_call_value.
From-SVN: r5353
parent
4644aad4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/expr.c
+5
-2
No files found.
gcc/expr.c
View file @
81d79e2c
...
@@ -507,6 +507,8 @@ convert_move (to, from, unsignedp)
...
@@ -507,6 +507,8 @@ convert_move (to, from, unsignedp)
if
(
to_real
)
if
(
to_real
)
{
{
rtx
value
;
#ifdef HAVE_extendqfhf2
#ifdef HAVE_extendqfhf2
if
(
HAVE_extendqfsf2
&&
from_mode
==
QFmode
&&
to_mode
==
HFmode
)
if
(
HAVE_extendqfsf2
&&
from_mode
==
QFmode
&&
to_mode
==
HFmode
)
{
{
...
@@ -775,8 +777,9 @@ convert_move (to, from, unsignedp)
...
@@ -775,8 +777,9 @@ convert_move (to, from, unsignedp)
/* This conversion is not implemented yet. */
/* This conversion is not implemented yet. */
abort
();
abort
();
emit_library_call
(
libcall
,
1
,
to_mode
,
1
,
from
,
from_mode
);
value
=
emit_library_call_value
(
libcall
,
NULL_RTX
,
1
,
to_mode
,
emit_move_insn
(
to
,
hard_libcall_value
(
to_mode
));
1
,
from
,
from_mode
);
emit_move_insn
(
to
,
value
);
return
;
return
;
}
}
...
...
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