diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-01-17 17:49:05 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-17 17:49:05 -0700 |
commit | ae0d310d590d266c9f6ec2a1ead80168d91a0b24 (patch) | |
tree | dc83a0488a5d43a5e490ac11f00834dc6c8af6bb /gcc/config/i386/i386.md | |
parent | a04a1bea948572735b610a9a01670ac90e13261a (diff) | |
download | gcc-ae0d310d590d266c9f6ec2a1ead80168d91a0b24.tar.gz |
Fix various bugs in previous change.
From-SVN: r17412
Diffstat (limited to 'gcc/config/i386/i386.md')
-rw-r--r-- | gcc/config/i386/i386.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 9d1dad5a113..f0692f945cb 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -836,7 +836,7 @@ [(set (match_operand:SI 0 "push_operand" "=<") (match_operand:SI 1 "nonmemory_operand" "ri"))] "" - "push%L0 %1") + "* return AS1 (push%L0,%1);") ;; On a 386, it is faster to push MEM directly. @@ -844,7 +844,7 @@ [(set (match_operand:SI 0 "push_operand" "=<") (match_operand:SI 1 "memory_operand" "m"))] "TARGET_PUSH_MEMORY" - "push%L0 %1") + "* return AS1 (push%L0,%1);") ;; General case of fullword move. @@ -906,13 +906,13 @@ [(set (match_operand:HI 0 "push_operand" "=<") (match_operand:HI 1 "nonmemory_operand" "ri"))] "" - "push%W0 %1") + "* return AS1 (push%W0,%1);") (define_insn "" [(set (match_operand:HI 0 "push_operand" "=<") (match_operand:HI 1 "memory_operand" "m"))] "TARGET_PUSH_MEMORY" - "push%W0 %1") + "* return AS1 (push%W0,%1);") ;; On i486, an incl and movl are both faster than incw and movw. @@ -1025,7 +1025,7 @@ [(set (match_operand:QI 0 "push_operand" "=<") (match_operand:QI 1 "const_int_operand" "n"))] "" - "push%W0,%1") + "* return AS1(push%W0,%1);") (define_insn "" [(set (match_operand:QI 0 "push_operand" "=<") |