summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/vector-shift2.c
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gcc.dg/torture/vector-shift2.c
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gcc.dg/torture/vector-shift2.c')
-rw-r--r--gcc/testsuite/gcc.dg/torture/vector-shift2.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/torture/vector-shift2.c b/gcc/testsuite/gcc.dg/torture/vector-shift2.c
new file mode 100644
index 000000000..0e8a0eb24
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/torture/vector-shift2.c
@@ -0,0 +1,61 @@
+/* { dg-do run } */
+
+#define vector(elcount, type) \
+__attribute__((vector_size((elcount)*sizeof(type)))) type
+
+#define vidx(type, vec, idx) (*((type *) &(vec) + idx))
+#define schar signed char
+#define uchar unsigned char
+
+#define ch14 1,2,3,4
+#define ch1 1,1,1,1
+#define chm1 -1,-1,-1,-1
+
+int main (int argc, char *argv[]) {
+ vector(16, uchar) vuchar = { ch14, ch14, ch14, ch14};
+ vector(16, schar) vchar0 = { ch1, ch1, ch1, ch1};
+ vector(16, schar) vchar1 = { chm1, chm1, chm1, chm1};
+
+ vector(16, schar) i1, i2, i3;
+ vector(16, uchar) u1, u2, u3;
+
+ i1 = vchar1<< vchar0;
+
+ if (vidx(schar, i1, 0) != ((schar)-1 << (schar)1))
+ __builtin_abort ();
+ if (vidx(schar, i1, 1) != ((schar)-1 << (schar)1))
+ __builtin_abort ();
+ if (vidx(schar, i1, 2) != ((schar)-1 << (schar)1))
+ __builtin_abort ();
+ if (vidx(schar, i1, 3) != ((schar)-1 << (schar)1))
+ __builtin_abort ();
+ u1 = vuchar << vchar0;
+
+ if (vidx(uchar, u1, 0) != ((uchar)1 << (schar)1))
+ __builtin_abort ();
+ if (vidx(uchar, u1, 1) != ((uchar)2 << (schar)1))
+ __builtin_abort ();
+ if (vidx(uchar, u1, 2) != ((uchar)3 << (schar)1))
+ __builtin_abort ();
+ if (vidx(uchar, u1, 3) != ((uchar)4 << (schar)1))
+ __builtin_abort ();
+
+
+ i2 = vchar1 >> vuchar;
+
+ if (vidx(schar, i2, 0) != ((schar)-1 >> (uchar)1))
+ __builtin_abort ();
+ if (vidx(schar, i2, 1) != ((schar)-1 >> (uchar)2))
+ __builtin_abort ();
+ if (vidx(schar, i2, 2) != ((schar)-1 >> (uchar)3))
+ __builtin_abort ();
+ if (vidx(schar, i2, 3) != ((schar)-1 >> (uchar)4))
+ __builtin_abort ();
+
+ vchar1 >>= vuchar;
+ vuchar <<= vchar0;
+ vuchar <<= vchar1;
+
+ return 0;
+}
+