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
19e1d311
Commit
19e1d311
authored
Jan 16, 1999
by
J"orn Rennecke
Committed by
Joern Rennecke
Jan 16, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sh.md (movdf, movsf): Temporary workaround for no_new_pseudos lossage.
From-SVN: r24692
parent
1b8b517b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletions
+19
-1
gcc/ChangeLog
+4
-0
gcc/config/sh/sh.md
+15
-1
No files found.
gcc/ChangeLog
View file @
19e1d311
Sat
Jan
16
10
:
48
:
16
1999
J
"orn Rennecke <amylaar@cygnus.co.uk>
* sh.md (movdf, movsf): Temporary workaround for no_new_pseudos lossage.
Fri Jan 15 23:44:37 1999 Richard Henderson <rth@cygnus.com>
* sparc.c (sparc_issue): Add hypersparc/sparclite86x entries.
...
...
gcc/config/sh/sh.md
View file @
19e1d311
;;- Machine description for the Hitachi SH.
;; Copyright (C) 1993
, 1994, 1995, 1996, 1997
Free Software Foundation, Inc.
;; Copyright (C) 1993
- 1999
Free Software Foundation, Inc.
;; Contributed by Steve Chamberlain (sac@cygnus.com).
;; Improved by Jim Wilson (wilson@cygnus.com).
...
...
@@ -2786,6 +2786,13 @@
if (prepare_move_operands (operands, DFmode)) DONE;
if (TARGET_SH4)
{
if (no_new_pseudos)
{
/* ??? FIXME: This is only a stopgap fix. There is no guarantee
that fpscr is in the right state. */
emit_insn (gen_movdf_i4 (operands[0], operands[1], get_fpscr_rtx ()));
DONE;
}
emit_df_insn (gen_movdf_i4 (operands[0], operands[1], get_fpscr_rtx ()));
/* We need something to tag possible REG_LIBCALL notes on to. */
if (TARGET_FPU_SINGLE && rtx_equal_function_value_matters
...
...
@@ -2875,6 +2882,13 @@
DONE;
if (TARGET_SH3E)
{
if (no_new_pseudos)
{
/* ??? FIXME: This is only a stopgap fix. There is no guarantee
that fpscr is in the right state. */
emit_insn (gen_movsf_ie (operands[0], operands[1], get_fpscr_rtx ()));
DONE;
}
emit_sf_insn (gen_movsf_ie (operands[0], operands[1], get_fpscr_rtx ()));
/* We need something to tag possible REG_LIBCALL notes on to. */
if (! TARGET_FPU_SINGLE && rtx_equal_function_value_matters
...
...
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