diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-02-15 16:10:58 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-02-15 16:10:58 +0000 |
commit | fcdf80437a7f65d3c785c7cdb32a4e7d4b68c315 (patch) | |
tree | 60a433427539181db5233a83aff35606bd1cee9a /gcc/config | |
parent | 8f781ea446f0485b4f5e121b95cf66241d879c3d (diff) | |
download | ppe42-gcc-fcdf80437a7f65d3c785c7cdb32a4e7d4b68c315.tar.gz ppe42-gcc-fcdf80437a7f65d3c785c7cdb32a4e7d4b68c315.zip |
(fix_truncdfsi2, fixuns_truncdfsi2): Use RS6000_ITRUNC and RS6000_UITRUNC,
not "itrunc" and "uitrunc".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6561 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-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 b4814630c9e..c1325dd7916 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; }") |