Commit 6ac5aa91 by Richard Henderson Committed by Richard Henderson

* gcc.dg/tree-ssa/loop-5.c: Use long instead of int.

From-SVN: r91740
parent 192b2fc4
2004-12-04 Richard Henderson <rth@redhat.com>
* gcc.dg/tree-ssa/loop-5.c: Use long instead of int.
2004-12-04 Richard Henderson <rth@redhat.com>
* lib/target-supports.exp (check_gc_sections_available): Disable
for alpha and ia64.
......
......@@ -3,11 +3,11 @@
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-vars" } */
void foo(int);
void foo(long);
void xxx(void)
{
int iter, jter;
long iter, jter;
for (iter = 0, jter = 2; iter < 100; iter++, jter++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment