[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.2.0 (beta-rc1) now available
- From: Alistair Lynn <arplynn@...>
- Date: Tue, 14 Jun 2011 12:53:03 +0100
Hi-
> ...primarily for this reason. Trying to flatten a basic block graph into
> runnable code when all you have are if...then...else, while...,
> repeat...until etc is *really hard*, and I believe (though I haven't
> seen proof) is actually impossible in the general case.
You can do this trivially with tail calls and one function per basic block.
Alistair