repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
FrontendC
/
2010-07-14-overconservative-align.c
blob
1744ba84185d369215752c1c78937ae3307975ad
1
// RUN: %llvmgcc %s -emit-llvm -S -o - | FileCheck %s
2
// PR 5995
3
struct
s
{
4
int
word
;
5
struct
{
6
int
filler
__attribute__
((
aligned
(
8
)));
7
};
8
};
9
10
void
func
(
struct
s
*
s
)
11
{
12
// CHECK: load %struct.s** %s_addr, align {{[48]}}
13
s
->
word
=
0
;
14
}