blob: 7f7d22ea9d7b1e964a2045c789bac5b47ef8e9d3 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3
4typedef struct {
5 unsigned long val;
6} structty;
7
8void bar(structty new_mask);
9static void foo() {
10 bar(({ structty mask; mask; }));
11}
12