diff options
author | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-08-01 20:07:59 +0000 |
---|---|---|
committer | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-08-01 20:07:59 +0000 |
commit | f32a69cda21f58cc00d4ec93b3875f1f0f6967cc (patch) | |
tree | a021575ae2d63bdf1034c536a37959935676cc94 /test | |
parent | 578434fda9905776efe2f3176daf5ca72efd1594 (diff) | |
download | external_llvm-f32a69cda21f58cc00d4ec93b3875f1f0f6967cc.zip external_llvm-f32a69cda21f58cc00d4ec93b3875f1f0f6967cc.tar.gz external_llvm-f32a69cda21f58cc00d4ec93b3875f1f0f6967cc.tar.bz2 |
Add a test for the load/store alignment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40687 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CFrontend/2007-08-01-LoadStoreAlign.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CFrontend/2007-08-01-LoadStoreAlign.c b/test/CFrontend/2007-08-01-LoadStoreAlign.c new file mode 100644 index 0000000..3d5b1fb --- /dev/null +++ b/test/CFrontend/2007-08-01-LoadStoreAlign.c @@ -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; + +} |