[gcc/testsuite]
2018-01-24 Michael Meissner <meissner@linux.vnet.ibm.com>
PR target/81550
* gcc.target/powerpc/loop_align.c: Use unsigned long for the loop
index instead of int, which allows IVOPTs to properly optimize the
loop.
From-SVN: r257038
+2018-01-24 Michael Meissner <meissner@linux.vnet.ibm.com>
+
+ PR target/81550
+ * gcc.target/powerpc/loop_align.c: Use unsigned long for the loop
+ index instead of int, which allows IVOPTs to properly optimize the
+ loop.
+
2018-01-24 David Malcolm <dmalcolm@redhat.com>
PR jit/82846
/* { dg-options "-O2 -mcpu=power7 -falign-functions=16" } */
/* { dg-final { scan-assembler ".p2align 5,,31" } } */
-void f(double *a, double *b, double *c, int n) {
- int i;
+void f(double *a, double *b, double *c, unsigned long n) {
+ unsigned long i;
for (i=0; i < n; i++)
a[i] = b[i] + c[i];
}