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-31-SubregFailure.c
blob
57dafee9e1d14b7bd91b33eb7ad2c77120e6b874
1
// RUN: %clang_cc1 -Wno-implicit-function-declaration -emit-llvm %s -o /dev/null
2
3
4
typedef
union
{
5
long
(*
ap
)[
4
];
6
}
ptrs
;
7
8
void
DoAssignIteration
(
void
) {
9
ptrs abase
;
10
abase
.
ap
+=
27
;
11
Assignment
(*
abase
.
ap
);
12
}
13
14