summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/altivec-6.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/ext/altivec-6.C')
-rw-r--r--gcc/testsuite/g++.dg/ext/altivec-6.C28
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/ext/altivec-6.C b/gcc/testsuite/g++.dg/ext/altivec-6.C
new file mode 100644
index 000000000..63ae0b0b9
--- /dev/null
+++ b/gcc/testsuite/g++.dg/ext/altivec-6.C
@@ -0,0 +1,28 @@
+/* Test for correct handling of literal arguments. */
+/* Author: Ziemowit Laski <zlaski@apple.com> */
+/* { dg-do compile { target powerpc*-*-* } } */
+/* { dg-require-effective-target powerpc_altivec_ok } */
+/* { dg-options "-maltivec" } */
+
+#include <altivec.h>
+
+void foo(void) {
+ const unsigned char *buf;
+ vector pixel vp = { 3, 4, 5, 6 };
+ vector bool int vbi = { 1, 0, 1, 0 };
+ vector bool short vbs = { 1, 0, 1, 0, 1, 0, 1, 0 };
+ vector bool char vbc = { 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0 };
+ vector signed char vsc;
+ int a = 3;
+
+ vec_dst(buf, a, 1);
+ vec_dstst(buf, a, 2);
+ vec_dststt(buf, a, 3);
+ vec_dststt(buf, a, 2);
+
+ vp = vec_sld(vp, vp, 5);
+ vbc = vec_splat(vbc, 7);
+ vbs = vec_splat(vbs, 12);
+ vp = vec_splat(vp, 17);
+ vbi = vec_splat(vbi, 31);
+}