diff options
Diffstat (limited to 'gcc/config/i386/i386.md')
-rw-r--r-- | gcc/config/i386/i386.md | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 56cf81d0bc3..21d1c2b0092 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -17591,11 +17591,13 @@ [(use (match_operand:BLK 0 "memory_operand" "")) (use (match_operand:BLK 1 "memory_operand" "")) (use (match_operand:SI 2 "nonmemory_operand" "")) - (use (match_operand:SI 3 "const_int_operand" ""))] + (use (match_operand:SI 3 "const_int_operand" "")) + (use (match_operand:SI 4 "const_int_operand" "")) + (use (match_operand:SI 5 "const_int_operand" ""))] "" { if (ix86_expand_movmem (operands[0], operands[1], operands[2], operands[3], - operands[3], constm1_rtx)) + operands[4], operands[5])) DONE; else FAIL; @@ -17605,11 +17607,13 @@ [(use (match_operand:BLK 0 "memory_operand" "")) (use (match_operand:BLK 1 "memory_operand" "")) (use (match_operand:DI 2 "nonmemory_operand" "")) - (use (match_operand:DI 3 "const_int_operand" ""))] + (use (match_operand:DI 3 "const_int_operand" "")) + (use (match_operand:SI 4 "const_int_operand" "")) + (use (match_operand:SI 5 "const_int_operand" ""))] "TARGET_64BIT" { if (ix86_expand_movmem (operands[0], operands[1], operands[2], operands[3], - operands[3], constm1_rtx)) + operands[4], operands[5])) DONE; else FAIL; @@ -17867,12 +17871,14 @@ [(use (match_operand:BLK 0 "memory_operand" "")) (use (match_operand:SI 1 "nonmemory_operand" "")) (use (match_operand 2 "const_int_operand" "")) - (use (match_operand 3 "const_int_operand" ""))] + (use (match_operand 3 "const_int_operand" "")) + (use (match_operand:SI 4 "const_int_operand" "")) + (use (match_operand:SI 5 "const_int_operand" ""))] "" { if (ix86_expand_setmem (operands[0], operands[1], operands[2], operands[3], - operands[3], constm1_rtx)) + operands[4], operands[5])) DONE; else FAIL; @@ -17889,7 +17895,7 @@ { if (ix86_expand_setmem (operands[0], operands[1], operands[2], operands[3], - operands[3], constm1_rtx)) + operands[4], operands[5])) DONE; else FAIL; |