altivec-15.c: New test.
authorZiemowit Laski <zlaski@apple.com>
Fri, 28 May 2004 22:19:05 +0000 (22:19 +0000)
committerJanis Johnson <janis@gcc.gnu.org>
Fri, 28 May 2004 22:19:05 +0000 (22:19 +0000)
2004-05-28  Ziemowit Laski  <zlaski@apple.com>

* gcc.dg/altivec-15.c: New test.

From-SVN: r82387

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/altivec-15.c [new file with mode: 0644]

index 22afe9416049125b9b02a385d1b369c47303a089..12f43fbd25163ecccd75d1bcccb9b73a77c5ec3e 100644 (file)
@@ -1,3 +1,7 @@
+2004-05-28  Ziemowit Laski  <zlaski@apple.com>
+
+       * gcc.dg/altivec-15.c: New test.
+
 2004-05-28  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/14668
diff --git a/gcc/testsuite/gcc.dg/altivec-15.c b/gcc/testsuite/gcc.dg/altivec-15.c
new file mode 100644 (file)
index 0000000..daecbf9
--- /dev/null
@@ -0,0 +1,29 @@
+/* { dg-do compile { target powerpc*-*-* } } */
+/* { dg-options "-maltivec" } */
+
+#include <altivec.h>
+
+/* Test whether the C front-end is not excessively picky about
+   the integral types and literals that AltiVec instrinsics will
+   accept.  */
+
+vector int vi = { 1, 2, 3, 4 };
+
+int
+main (void)
+{
+    unsigned long ul = 2;
+    signed long sl = 2;
+    unsigned int ui = 2;
+    signed int si = 2;
+    float fl = 2.0;
+
+    vec_dst (&vi, ul, '\0');
+    vec_dst (&vi, sl, 0);
+    vec_dst (&vi, ui, '\0');
+    vec_dst (&vi, si, 0);
+    vec_dstst (&vi, (short)fl, '\0');
+
+    return 0;
+}
+