Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 %s -emit-llvm -o -
      2 
      3 union A {                    // { uint }
      4   union B { double *C; } D;
      5 } E = { { (double*)12312 } };
      6 
      7