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
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2007-09-26-Alignment.c
blob
5d8670aaf50a68d758e82e017eab6703b41f33af
1
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
extern
void
p
(
int
*);
3
int
q
(
void
) {
4
// CHECK: alloca i32, align 16
5
int
x
__attribute__
((
aligned
(
16
)));
6
p
(&
x
);
7
return
x
;
8
}