Add a test for the load/store alignment.
authorLauro Ramos Venancio <lauro.venancio@gmail.com>
Wed, 1 Aug 2007 20:07:59 +0000 (20:07 +0000)
committerLauro Ramos Venancio <lauro.venancio@gmail.com>
Wed, 1 Aug 2007 20:07:59 +0000 (20:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40687 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2007-08-01-LoadStoreAlign.c [new file with mode: 0644]

diff --git a/test/CFrontend/2007-08-01-LoadStoreAlign.c b/test/CFrontend/2007-08-01-LoadStoreAlign.c
new file mode 100644 (file)
index 0000000..3d5b1fb
--- /dev/null
@@ -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;
+
+}