From: Matthias Braun Date: Thu, 21 Jun 2007 16:41:23 +0000 (+0000) Subject: fix testapp X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=346691e457d7415b59748c31e981bd3b96411f84;p=libfirm fix testapp [r14700] --- diff --git a/ir/be/test/vla.c b/ir/be/test/vla.c index dcb762cab..5c30c9798 100644 --- a/ir/be/test/vla.c +++ b/ir/be/test/vla.c @@ -5,7 +5,8 @@ void f(int x) { int a[x]; - for (int i = 0; i < x; ++i) { + int i; + for (i = 0; i < x; ++i) { a[i] = rand(); } }