From: Jan Hubicka Date: Tue, 4 Feb 2003 18:08:16 +0000 (+0100) Subject: * i386.md (vector push splitters): Fix typo in resolving conflict. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=09f26fb511eb0cb0184bf81111b7041ae8ae6042;p=gcc.git * i386.md (vector push splitters): Fix typo in resolving conflict. From-SVN: r62387 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1c7c2460d62..d4520a723e3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 4 18:40:42 CET 2003 Jan Hubicka + + * i386.md (vector push splitters): Fix typo in resolving conflict. + 2003-02-04 Rodney Brown * config/i386/i386.c (x86_function_profiler): Fix typo in format. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 292ddf371ba..c11a927985a 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -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"