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-30-LargeIntegerBitfieldMember.c
blob
483cb668a28b392fcf56cf3d40612e6e0da6451b
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
struct
foo
{
4
unsigned int
I
:
1
;
5
unsigned char
J
[
1
][
123
];
6
unsigned int
K
:
1
;
7
};
8
9
struct
foo F
;