diff options
author | John Wehle <john@feith.com> | 1999-04-14 18:42:20 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-14 12:42:20 -0600 |
commit | ffac3509afece46034af44131b3f5e5fdff97713 (patch) | |
tree | 1ac8070452d6b9e481c8ed90d386382a805ecbb3 /gcc | |
parent | 3595bef688145f227734b9ae88261d20a8cbe656 (diff) | |
download | gcc-ffac3509afece46034af44131b3f5e5fdff97713.zip gcc-ffac3509afece46034af44131b3f5e5fdff97713.tar.gz gcc-ffac3509afece46034af44131b3f5e5fdff97713.tar.bz2 |
i386.md (truncxfdf): Output the template supplied by output_move_double with the correct operands.
* i386.md (truncxfdf): Output the template supplied
by output_move_double with the correct operands.
From-SVN: r26457
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 30a0868..ebdb3cc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ Wed Apr 14 14:26:36 1999 John Wehle (john@feith.com) + * i386.md (truncxfdf): Output the template supplied + by output_move_double with the correct operands. + * i386.md (extendsfdf, extendsfxf, extenddfxf): Use output_float_extend instead specifying '#' as the template. * i386.c (output_float_extend): Define. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 211b0ba..034c0e6 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -2651,7 +2651,7 @@ { xops[0] = operands[0]; xops[1] = operands[2]; - return output_move_double (xops); + output_asm_insn (output_move_double (xops), xops); } return \"\"; |