diff options
author | Torbjorn Granlund <tege@gnu.org> | 1993-01-07 20:32:15 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1993-01-07 20:32:15 +0000 |
commit | 010c262fc5fc1b3320431977df7def93277ede3a (patch) | |
tree | 019df6ef3c8457668ed72bc92a3c55024b7ff9a7 /gcc | |
parent | e061ef25849dacf3c7d71729a3785805adcba227 (diff) | |
download | gcc-010c262fc5fc1b3320431977df7def93277ede3a.zip gcc-010c262fc5fc1b3320431977df7def93277ede3a.tar.gz gcc-010c262fc5fc1b3320431977df7def93277ede3a.tar.bz2 |
(output_floatsisf2, output_floatsidf2): Remove.
From-SVN: r3144
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.c | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 831ebf7..15a544b 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -1957,7 +1957,7 @@ print_operand (file, x, code) case EQ: fprintf (file, "="); break; case NE: - fprintf (file, "<>"); break; + fprintf (file, "<>"); break; case GT: fprintf (file, ">"); break; case GE: @@ -1985,7 +1985,7 @@ print_operand (file, x, code) switch (GET_CODE (x)) { case EQ: - fprintf (file, "<>"); break; + fprintf (file, "<>"); break; case NE: fprintf (file, "="); break; case GT: @@ -2152,30 +2152,6 @@ output_global_address (file, x) output_addr_const (file, x); } -/* MEM rtls here are never SYMBOL_REFs (I think), so fldws is safe. */ - -char * -output_floatsisf2 (operands) - rtx *operands; -{ - if (GET_CODE (operands[1]) == MEM) - return "fldws %1,%0\n\tfcnvxf,sgl,sgl %0,%0"; - else if (FP_REG_P (operands[1])) - return "fcnvxf,sgl,sgl %1,%0"; - abort(); -} - -char * -output_floatsidf2 (operands) - rtx *operands; -{ - if (GET_CODE (operands[1]) == MEM) - return "fldws %1,%0\n\tfcnvxf,sgl,dbl %0,%0"; - else if (FP_REG_P (operands[1])) - return "fcnvxf,sgl,dbl %1,%0"; - abort(); -} - enum rtx_code reverse_relop (code) enum rtx_code code; |