blob: 7f7d22ea9d7b1e964a2045c789bac5b47ef8e9d3 [file] [log] [blame]
Dan Gohman0d4bbf22009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnerca211872004-11-06 22:41:00 +00002
Chris Lattnerf08cb1a2003-08-21 18:25:37 +00003
4typedef struct {
5 unsigned long val;
6} structty;
7
8void bar(structty new_mask);
9static void foo() {
10 bar(({ structty mask; mask; }));
11}
12