mirror of git://gcc.gnu.org/git/gcc.git
i386.c (ix86_expand_args_builtin): Add break.
* config/i386/i386.c (ix86_expand_args_builtin): Add break. (ix86_expand_round_builtin): Likewise. From-SVN: r238866
This commit is contained in:
parent
28710a875b
commit
ee27d4a4e6
|
|
@ -4,8 +4,10 @@
|
||||||
2016-07-29 Marek Polacek <polacek@redhat.com>
|
2016-07-29 Marek Polacek <polacek@redhat.com>
|
||||||
|
|
||||||
PR c/7652
|
PR c/7652
|
||||||
* config/rs6000/rs6000.c (altivec_expand_ld_builtin): Likewise.
|
* config/rs6000/rs6000.c (altivec_expand_ld_builtin): Add break.
|
||||||
(altivec_expand_st_builtin): Likewise.
|
(altivec_expand_st_builtin): Likewise.
|
||||||
|
* config/i386/i386.c (ix86_expand_args_builtin): Likewise.
|
||||||
|
(ix86_expand_round_builtin): Likewise.
|
||||||
|
|
||||||
2016-07-27 Segher Boessenkool <segher@kernel.crashing.org>
|
2016-07-27 Segher Boessenkool <segher@kernel.crashing.org>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37760,6 +37760,7 @@ ix86_expand_args_builtin (const struct builtin_description *d,
|
||||||
case 5:
|
case 5:
|
||||||
pat = GEN_FCN (icode) (real_target, args[0].op, args[1].op,
|
pat = GEN_FCN (icode) (real_target, args[0].op, args[1].op,
|
||||||
args[2].op, args[3].op, args[4].op);
|
args[2].op, args[3].op, args[4].op);
|
||||||
|
break;
|
||||||
case 6:
|
case 6:
|
||||||
pat = GEN_FCN (icode) (real_target, args[0].op, args[1].op,
|
pat = GEN_FCN (icode) (real_target, args[0].op, args[1].op,
|
||||||
args[2].op, args[3].op, args[4].op,
|
args[2].op, args[3].op, args[4].op,
|
||||||
|
|
@ -38135,6 +38136,7 @@ ix86_expand_round_builtin (const struct builtin_description *d,
|
||||||
case 5:
|
case 5:
|
||||||
pat = GEN_FCN (icode) (target, args[0].op, args[1].op,
|
pat = GEN_FCN (icode) (target, args[0].op, args[1].op,
|
||||||
args[2].op, args[3].op, args[4].op);
|
args[2].op, args[3].op, args[4].op);
|
||||||
|
break;
|
||||||
case 6:
|
case 6:
|
||||||
pat = GEN_FCN (icode) (target, args[0].op, args[1].op,
|
pat = GEN_FCN (icode) (target, args[0].op, args[1].op,
|
||||||
args[2].op, args[3].op, args[4].op,
|
args[2].op, args[3].op, args[4].op,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue