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
/
2002-07-30-SubregSetAssertion.c
blob
b66442d1faf3082161ee75d028bac7de3b8af684
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4
union
X
{
5
void
*
B
;
6
};
7
8
union
X
foo
(
void
) {
9
union
X A
;
10
A
.
B
= (
void
*)
123
;
11
return
A
;
12
}