------- Comment #2 from rguenth at gcc dot gnu dot org  2009-05-24 12:11 -------
Testcase:

typedef int aligned __attribute__((aligned(64)));
struct Frame {
  aligned i;
};

void foo(struct Frame *p)
{
  aligned *q = &p->i;
  *q = 0;
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40233

Reply via email to