Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
      2 
      3 
      4 typedef struct {
      5   unsigned long val;
      6 } structty;
      7 
      8 void bar(structty new_mask);
      9 static void foo() {
     10   bar(({ structty mask; mask; }));
     11 }
     12 
     13