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
03747aa3
Commit
03747aa3
authored
Jul 11, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(convert_move): Add some conversions for TQFmode.
From-SVN: r7733
parent
e42a6f5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
gcc/expr.c
+16
-0
No files found.
gcc/expr.c
View file @
03747aa3
...
...
@@ -619,6 +619,14 @@ convert_move (to, from, unsignedp)
}
#endif
#ifdef HAVE_extendhftqf2
if
(
HAVE_extendhftqf2
&&
from_mode
==
HFmode
&&
to_mode
==
TQFmode
)
{
emit_unop_insn
(
CODE_FOR_extendhftqf2
,
to
,
from
,
UNKNOWN
);
return
;
}
#endif
#ifdef HAVE_extendhfsf2
if
(
HAVE_extendhfsf2
&&
from_mode
==
HFmode
&&
to_mode
==
SFmode
)
{
...
...
@@ -719,6 +727,14 @@ convert_move (to, from, unsignedp)
return
;
}
#endif
#ifdef HAVE_trunctqfhf2
if
(
HAVE_trunctqfhf2
&&
from_mode
==
TQFmode
&&
to_mode
==
HFmode
)
{
emit_unop_insn
(
CODE_FOR_trunctqfhf2
,
to
,
from
,
UNKNOWN
);
return
;
}
#endif
#ifdef HAVE_truncsfhf2
if
(
HAVE_truncsfhf2
&&
from_mode
==
SFmode
&&
to_mode
==
HFmode
)
{
...
...
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