repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2003-08-21-StmtExpr.c
blob
77f4cd655a815bedca278643e2bd8680a449572b
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4
typedef
struct
{
5
unsigned long
val
;
6
}
structty
;
7
8
void
bar
(
structty new_mask
);
9
static void
foo
(
void
) {
10
bar
(({
structty mask
;
mask
; }));
11
}
12