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] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2007-08-01-LoadStoreAlign.c
blob
5570a5bfa989732e6e176b68767e693d587354a0
1
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3
struct
p
{
4
char
a
;
5
int
b
;
6
}
__attribute__
((
packed
));
7
8
struct
p t
= {
1
,
10
};
9
struct
p u
;
10
11
int
main
(
void
) {
12
// CHECK: align 1
13
// CHECK: align 1
14
int
tmp
=
t
.
b
;
15
u
.
b
=
tmp
;
16
return
tmp
;
17
18
}