mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Add a test for the load/store alignment.
llvm-svn: 40687
This commit is contained in:
parent
1ef30713de
commit
699e4b2dec
17
test/CFrontend/2007-08-01-LoadStoreAlign.c
Normal file
17
test/CFrontend/2007-08-01-LoadStoreAlign.c
Normal file
@ -0,0 +1,17 @@
|
||||
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep -c {align 1} | grep 2
|
||||
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | llvm-as | llc
|
||||
|
||||
struct p {
|
||||
char a;
|
||||
int b;
|
||||
} __attribute__ ((packed));
|
||||
|
||||
struct p t = { 1, 10 };
|
||||
struct p u;
|
||||
|
||||
int main () {
|
||||
int tmp = t.b;
|
||||
u.b = tmp;
|
||||
return tmp;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user