blob: 878ed473487e68944bcb8766241cf7416abe5e29 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattnerbcf86d82003-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