Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
ba4733d901b1c2b994f66707657342b8c81c92bc
/
.
/
test
/
CFrontend
/
2003-08-21-StmtExpr.c
blob: 878ed473487e68944bcb8766241cf7416abe5e29 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
typedef
struct
{
unsigned
long
val
;
}
structty
;
void
bar
(
structty new_mask
);
static
void
foo
()
{
bar
(({
structty mask
;
mask
;
}));
}