From: uros Date: Mon, 7 Apr 2008 16:54:00 +0000 (+0000) Subject: * config/i386/i386.md ("*sse_prologue_save_insn"): Use braced output X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=ae3049cd6b58312fd928ea4c911d35734d9203eb;hp=6cbc0aeb218e5473a550244ef9303b0e5a28f835 * config/i386/i386.md ("*sse_prologue_save_insn"): Use braced output control string instead of quoted. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@133984 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 068f14b15f0..e350b846907 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,13 +1,18 @@ +2008-04-07 Uros Bizjak + + * config/i386/i386.md ("*sse_prologue_save_insn"): Use braced output + control string instead of quoted. + 2008-04-07 Kenneth Zadeck - doc/rtl.texi: Rewrite of subreg section. - + * doc/rtl.texi: Rewrite of subreg section. + 2008-04-07 Kai Tietz - PR/35842 - * config/i386/i386.c (legitimize_pic_address): Add treating - of dllimport SYM_REF's. - (legitimize_dllimport_symbol): Add prototype. + PR/35842 + * config/i386/i386.c (legitimize_pic_address): Add treating + of dllimport SYM_REF's. + (legitimize_dllimport_symbol): Add prototype. 2008-04-07 Eric Botcazou @@ -278,12 +283,10 @@ * config/mips/mips.md (any_gt, any_ge, any_lt, any_le): New code iterators. - (u): Add attribute values for gt, gtu, ge, geu, lt, ltu, le and - leu. + (u): Add attribute values for gt, gtu, ge, geu, lt, ltu, le and leu. (sgt): Merge sgt and sgtu into new expander. (sgt, sgtu): Remove expanders. - (*sgt_): Merge *sgt_ and *sgtu_ into new - pattern. + (*sgt_): Merge *sgt_ and *sgtu_ into new pattern. (*sgt_, *sgtu_): Remove patterns. (*sgt__mips16): Merge *sgt__mips16 and *sgtu__mips16 into new pattern. @@ -295,16 +298,14 @@ (*sge_, second *sge_): Remove patterns. (slt): Merge slt and sltu into new expander. (slt, sltu): Remove expanders. - (*slt_): Merge *slt_ and *sltu_ into new - pattern. + (*slt_): Merge *slt_ and *sltu_ into new pattern. (*slt_, *sltu_): Remove patterns. (*slt__mips16): Merge *slt__mips16 and *sltu__mips16 into new pattern. (*slt__mips16, *sltu__mips16): Remove patterns. (sle): Merge sle and sleu into new expander. (sle, sleu): Remove expanders. - (*sle_): Merge *sle_ and *sleu_ into new - pattern. + (*sle_): Merge *sle_ and *sleu_ into new pattern. (*sle_, *sleu_): Remove patterns. (*sle__mips16): Merge *sle__mips16 and *sleu__mips16 into new pattern. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 7b65a9e705e..ce5722ab0ba 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -21067,26 +21067,24 @@ "TARGET_64BIT && INTVAL (operands[4]) + SSE_REGPARM_MAX * 16 - 16 < 128 && INTVAL (operands[4]) + INTVAL (operands[2]) * 16 >= -128" - "* { int i; operands[0] = gen_rtx_MEM (Pmode, gen_rtx_PLUS (Pmode, operands[0], operands[4])); - output_asm_insn (\"jmp\\t%A1\", operands); + output_asm_insn ("jmp\t%A1", operands); for (i = SSE_REGPARM_MAX - 1; i >= INTVAL (operands[2]); i--) { operands[4] = adjust_address (operands[0], DImode, i*16); operands[5] = gen_rtx_REG (TImode, SSE_REGNO (i)); PUT_MODE (operands[4], TImode); if (GET_CODE (XEXP (operands[0], 0)) != PLUS) - output_asm_insn (\"rex\", operands); - output_asm_insn (\"movaps\\t{%5, %4|%4, %5}\", operands); + output_asm_insn ("rex", operands); + output_asm_insn ("movaps\t{%5, %4|%4, %5}", operands); } - (*targetm.asm_out.internal_label) (asm_out_file, \"L\", - CODE_LABEL_NUMBER (operands[3])); - return \"\"; + (*targetm.asm_out.internal_label) (asm_out_file, "L", + CODE_LABEL_NUMBER (operands[3])); + return ""; } - " [(set_attr "type" "other") (set_attr "length_immediate" "0") (set_attr "length_address" "0")