From: Christoph Mallon Date: Wed, 3 Sep 2008 20:09:28 +0000 (+0000) Subject: Crash in ast2firm concerning unreachable if. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=bfbd0f818fe8881aa6336c3b07eeea51e7741266;p=cparser Crash in ast2firm concerning unreachable if. [r21679] --- diff --git a/parsetest/cp_error049.c b/parsetest/cp_error049.c new file mode 100644 index 0000000..a302437 --- /dev/null +++ b/parsetest/cp_error049.c @@ -0,0 +1,5 @@ +int main(void) +{ + return 0; + if (0) {} +}