From: Michael Beck Date: Thu, 21 Jun 2007 12:31:15 +0000 (+0000) Subject: reduce the number of iteration X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=8e3c6074b7f863ff88d91714694b941d17220a0e;p=libfirm reduce the number of iteration [r14681] --- diff --git a/ir/be/test/vla.c b/ir/be/test/vla.c index 12a7e7ca1..dcb762cab 100644 --- a/ir/be/test/vla.c +++ b/ir/be/test/vla.c @@ -14,6 +14,6 @@ void f(int x) int main(void) { srand(23); - f(rand()); + f(rand() & 31); return 0; }