mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01:00
bce5e9b2b2
llvm-svn: 8010
11 lines
139 B
C
11 lines
139 B
C
|
|
typedef struct {
|
|
unsigned long val;
|
|
} structty;
|
|
|
|
void bar(structty new_mask);
|
|
static void foo() {
|
|
bar(({ structty mask; mask; }));
|
|
}
|
|
|