[llvm-commits] [llvm-gcc-4.2] r43399 - /llvm-gcc-4.2/trunk/gcc/llvm-convert.cpp

Duncan Sands baldrick at free.fr
Wed Nov 7 01:20:28 PST 2007


Hi Bill,

> Does this help? :-)

the tree dumps weren't very informative! :)  Here is a testcase that
seems to show the same kind of problem, and works on my machine:

struct A
{
  int a[11];
};

void Qux() {
  static struct A C = {0};
  struct A __attribute__ ((aligned (1))) Bar;

  Bar = C;
}

Can you please confirm that this is the problem you are talking about?

Thanks,

Duncan.



More information about the llvm-commits mailing list