mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-02 17:09:05 +00:00
bf08e82d8e
llvm-svn: 79992
13 lines
191 B
C
13 lines
191 B
C
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
|
|
|
|
|
|
typedef struct {
|
|
unsigned long val;
|
|
} structty;
|
|
|
|
void bar(structty new_mask);
|
|
static void foo() {
|
|
bar(({ structty mask; mask; }));
|
|
}
|
|
|