mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-24 05:14:58 +08:00
* i386.md (vector push splitters): Fix typo in resolving conflict.
From-SVN: r62387
This commit is contained in:
parent
ff6e2d3e76
commit
09f26fb511
@ -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.
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user