summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/ext-vector-member-alignment.c
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2012-03-22 22:36:39 +0000
committerEli Friedman <eli.friedman@gmail.com>2012-03-22 22:36:39 +0000
commit610bb87e17d193d30f498577dc46068d8db41c5a (patch)
treeb8304f7518bff0486f0dc4b6a016bf8af1a296e7 /clang/test/CodeGen/ext-vector-member-alignment.c
parente26928c5bedccb3deb2784eaa65d4f31e3e8c749 (diff)
downloadbcm5719-llvm-610bb87e17d193d30f498577dc46068d8db41c5a.tar.gz
bcm5719-llvm-610bb87e17d193d30f498577dc46068d8db41c5a.zip
Make sure we correctly set the alignment for vector loads and stores associated with vector element lvalues. Patch by Kevin Schoedel (with some minor modifications by me).
llvm-svn: 153285
Diffstat (limited to 'clang/test/CodeGen/ext-vector-member-alignment.c')
-rw-r--r--clang/test/CodeGen/ext-vector-member-alignment.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/clang/test/CodeGen/ext-vector-member-alignment.c b/clang/test/CodeGen/ext-vector-member-alignment.c
new file mode 100644
index 00000000000..73a6d6cf854
--- /dev/null
+++ b/clang/test/CodeGen/ext-vector-member-alignment.c
@@ -0,0 +1,27 @@
+// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
+
+typedef float float4 __attribute__((ext_vector_type(4)));
+
+struct __attribute__((packed, aligned(4))) struct1 {
+ float4 position;
+};
+int x = __alignof(struct struct1);
+
+float4 f(struct struct1* x) { return x->position; }
+
+void func(struct struct1* p, float *a, float *b, float c) {
+ p->position.x = c;
+ *a = p->position.y;
+ *b = p->position[0];
+ p->position[2] = c;
+ // FIXME: We should be able to come up with a more aggressive alignment
+ // estimate.
+ // CHECK: @func
+ // CHECK: load <4 x float>* {{%.*}}, align 1
+ // CHECK: store <4 x float> {{%.*}}, <4 x float>* {{%.*}}, align 1
+ // CHECK: load <4 x float>* {{%.*}}, align 1
+ // CHECK: load <4 x float>* {{%.*}}, align 1
+ // CHECK: load <4 x float>* {{%.*}}, align 1
+ // CHECK: store <4 x float> {{%.*}}, <4 x float>* {{%.*}}, align 1
+ // CHECK: ret void
+}
OpenPOWER on IntegriCloud