diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1994-02-15 16:10:58 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1994-02-15 16:10:58 +0000 |
commit | 3c64f04b4ffd2ff1a055a00ee036ab5ea4bfc180 (patch) | |
tree | 60a433427539181db5233a83aff35606bd1cee9a /gcc/config/rs6000 | |
parent | 9929b5751beb1f433de2511fa1c647c8b414aa16 (diff) | |
download | gcc-3c64f04b4ffd2ff1a055a00ee036ab5ea4bfc180.zip gcc-3c64f04b4ffd2ff1a055a00ee036ab5ea4bfc180.tar.gz gcc-3c64f04b4ffd2ff1a055a00ee036ab5ea4bfc180.tar.bz2 |
(fix_truncdfsi2, fixuns_truncdfsi2): Use RS6000_ITRUNC and RS6000_UITRUNC,
not "itrunc" and "uitrunc".
From-SVN: r6561
Diffstat (limited to 'gcc/config/rs6000')
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index b481463..c1325dd 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -2639,7 +2639,7 @@ " { emit_insn (gen_trunc_call (operands[0], operands[1], - gen_rtx (SYMBOL_REF, Pmode, \"itrunc\"))); + gen_rtx (SYMBOL_REF, Pmode, RS6000_ITRUNC))); DONE; }") @@ -2650,7 +2650,7 @@ " { emit_insn (gen_trunc_call (operands[0], operands[1], - gen_rtx (SYMBOL_REF, Pmode, \"uitrunc\"))); + gen_rtx (SYMBOL_REF, Pmode, RS6000_UITRUNC))); DONE; }") |