2017-03-09 Richard Biener <rguenther@suse.de>
PR ipa/79970
* ipa-prop.c (ipa_modify_formal_parameters): Avoid changing
alignment of BLKmode params.
* gcc.dg/torture/pr79970.c: New testcase.
From-SVN: r246001
+2017-03-09 Richard Biener <rguenther@suse.de>
+
+ PR ipa/79970
+ * ipa-prop.c (ipa_modify_formal_parameters): Avoid changing
+ alignment of BLKmode params.
+
2017-03-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
PR target/79913
else
{
ptype = adj->type;
- if (is_gimple_reg_type (ptype))
+ if (is_gimple_reg_type (ptype)
+ && TYPE_MODE (ptype) != BLKmode)
{
unsigned malign = GET_MODE_ALIGNMENT (TYPE_MODE (ptype));
if (TYPE_ALIGN (ptype) != malign)
+2017-03-09 Richard Biener <rguenther@suse.de>
+
+ PR ipa/79970
+ * gcc.dg/torture/pr79970.c: New testcase.
+
2017-03-09 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/71966
--- /dev/null
+/* { dg-do compile } */
+/* { dg-skip-if "" { *-*-* } { "-flto" } { "" } } */
+/* { dg-additional-options "-mno-sse" { target x86_64-*-* i?86-*-* } } */
+
+typedef int c __attribute__ ((__vector_size__ (16)));
+
+__attribute__((always_inline)) void d (void); /* { dg-warning "" } { dg-error 7 "inlining failed" } */
+void f(c x);
+
+inline void e (c *b) {
+ f (*b);
+}
+
+void a ()
+{
+ struct
+ {
+ c g[4];
+ } h;
+ d ();
+ e (h.g);
+}
+