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
/
align-local.c
blob
9e8a56066e1a0686240e1576d1ce602f05ec2c3c
1
// RUN: %clang_cc1 -emit-llvm < %s | FileCheck %s
2
3
typedef
struct
__attribute
((
aligned
(
16
))) {
int
x
[
4
];}
ff
;
4
5
// CHECK: alloca %struct.ff, align 16
6
// CHECK: alloca %struct.anon, align 16
7
int
a
(
void
) {
8
ff a
;
9
struct
{
int
x
[
4
];}
b
__attribute
((
aligned
(
16
)));
10
}