'gcc-3_4-branch'.
From-SVN: r93893
--- /dev/null
+/* PR c/17297 */
+
+typedef float V2SF __attribute__ ((vector_size (8)));
+
+int test0 (V2SF, V2SF);
+
+int
+main (void)
+{
+ V2SF a = (V2SF) {1.0f/0.0f - 1.0f/0.0f, 1.0f/0.0f - 1.0f/0.0f};
+ V2SF b = (V2SF) {567.345, 1984.0};
+ int i;
+
+ i = test0 (a, b);
+ return i;
+}
--- /dev/null
+/* PR rtl-optimization/15139 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -funroll-loops" } */
+
+void
+foo (double **a, double **z)
+{
+ long int i, j;
+ double d = -1.0;
+
+ for (i = 0; i < 6; i++)
+ for (j = 0; j < 5; j++)
+ d = z[i][j] > d ? z[i][j] : d;
+
+ for (i = 0; i < 6; i++)
+ for (j = 0; j < 5; j++)
+ z[i][j] /= d;
+
+ for (i = 0; i < 5; i++)
+ a[i][j] = z[i][j];
+}
--- /dev/null
+/* PR middle-end/19164 */
+/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
+/* { dg-options "-mmmx" } */
+
+typedef short int V __attribute__ ((vector_size (8)));
+static V v = (V) 0x00FF00FF00FF00FFLL; /* { dg-error "is not constant" } */