diff options
author | Richard Stallman <rms@gnu.org> | 1992-08-20 04:53:06 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-08-20 04:53:06 +0000 |
commit | 99effc21d4027b4391fbdddea247f25dd568e366 (patch) | |
tree | d7bf38e97e4f59637d6c087150d131c62f15083a /gcc | |
parent | 53e33d9533dd78d7be7366f39e29f860cc18675e (diff) | |
download | gcc-99effc21d4027b4391fbdddea247f25dd568e366.zip gcc-99effc21d4027b4391fbdddea247f25dd568e366.tar.gz gcc-99effc21d4027b4391fbdddea247f25dd568e366.tar.bz2 |
(mulsi3): Use emit_insn on results of gen fcns. Return with DONE.
From-SVN: r1904
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i860/i860.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/i860/i860.md b/gcc/config/i860/i860.md index 6e510aa2..46de393 100644 --- a/gcc/config/i860/i860.md +++ b/gcc/config/i860/i860.md @@ -1700,9 +1700,10 @@ " { if (WORDS_BIG_ENDIAN) - return gen_mulsi3_big (operands[0], operands[1], operands[2]); + emit_insn (gen_mulsi3_big (operands[0], operands[1], operands[2])); else - return gen_mulsi3_little (operands[0], operands[1], operands[2]); + emit_insn (gen_mulsi3_little (operands[0], operands[1], operands[2])); + DONE; }") (define_expand "mulsi3_little" |