* i386.md (vector push splitters): Fix typo in resolving conflict.

From-SVN: r62387
This commit is contained in:
Jan Hubicka 2003-02-04 19:08:16 +01:00 committed by Jan Hubicka
parent ff6e2d3e76
commit 09f26fb511
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Tue Feb 4 18:40:42 CET 2003 Jan Hubicka <jh@suse.cz>
* i386.md (vector push splitters): Fix typo in resolving conflict.
2003-02-04 Rodney Brown <rbrown64@csc.com.au>
* config/i386/i386.c (x86_function_profiler): Fix typo in format.

View File

@ -18863,7 +18863,7 @@
(set (match_dup 2) (match_dup 1))]
"operands[2] = change_address (operands[0], GET_MODE (operands[0]),
stack_pointer_rtx);
operands[3] = GEN_INT (GET_MODE_SIZE (GET_MODE (operands[0])));")
operands[3] = GEN_INT (-GET_MODE_SIZE (GET_MODE (operands[0])));")
(define_split
[(set (match_operand 0 "push_operand" "")
@ -18874,7 +18874,7 @@
(set (match_dup 2) (match_dup 1))]
"operands[2] = change_address (operands[0], GET_MODE (operands[0]),
stack_pointer_rtx);
operands[3] = GEN_INT (GET_MODE_SIZE (GET_MODE (operands[0])));")
operands[3] = GEN_INT (-GET_MODE_SIZE (GET_MODE (operands[0])));")
(define_insn "movti_internal"