Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 %s -emit-llvm -o -
      2 
      3 
      4 enum {
      5   tA = 0,
      6   tB = 1
      7 };
      8 
      9 struct MyStruct {
     10   unsigned long A;
     11   void * B;
     12 };
     13 
     14 void bar(){
     15 struct MyStruct MS = { tB, 0 };
     16 }
     17