repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2007-09-26-Alignment.c
blob
1638fed05873a67b4533c8cb71fd208589f62ffa
1
// RUN: %llvmgcc -S %s -o - | grep {align 16}
2
extern
p
(
int
*);
3
int
q
(
void
) {
4
int
x
__attribute__
((
aligned
(
16
)));
5
p
(&
x
);
6
return
x
;
7
}