llvm-6502/test/FrontendC/2003-08-21-StmtExpr.c

13 lines
194 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
typedef struct {
unsigned long val;
} structty;
void bar(structty new_mask);
static void foo() {
bar(({ structty mask; mask; }));
}