From: Matthias Braun Date: Fri, 17 Nov 2006 12:03:55 +0000 (+0000) Subject: add a main function to condeval X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=f7ce798e5b4e15aac29e64750acbb77ef6dba662;p=libfirm add a main function to condeval --- diff --git a/ir/be/test/condeval.c b/ir/be/test/condeval.c index 48ae3fda2..ee559dae4 100644 --- a/ir/be/test/condeval.c +++ b/ir/be/test/condeval.c @@ -41,7 +41,9 @@ void i(void) for (x = 0; x < 10 && !finish; x++) { for (y = 0; y < 10 && !finish; y++) { for (z = 0; z < 10 && !finish; z++) { - if (a()) finish = 1; + if (a()) + finish = 1; + //a(); } } } @@ -68,3 +70,7 @@ void j(void) } } #endif + +int main() { + return 0; +}