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
/
2008-01-21-PackedBitFields.c
blob
daf29cb8bcbfccaa7d3e8a7d032696719441b523
1
// RUN: %clang_cc1 %s -emit-llvm -o -
2
3
typedef
double
Al1Double
__attribute__
((
aligned
(
1
)));
4
struct
x
{
int
a
:
23
;
Al1Double v
; };
5
struct
x X
= {
5
,
3.0
};
6
double
foo
(
void
) {
return
X
.
v
; }
7