ez-lang icon indicating copy to clipboard operation
ez-lang copied to clipboard

Bug in SSA Translation

Open dibyendumajumdar opened this issue 6 months ago • 0 comments

Test program:

func bug(N: Int)
{
    var p=2
    while( p < N ) {
        if (p) {
            p = p + 1
        }
    }
    while ( p < N ) {
        p = p + 1
    }
}

Details of the bug are at https://github.com/CompilerProgramming/ez-lang/wiki/Debugging-Optimizing-Compiler

dibyendumajumdar avatar May 24 '25 09:05 dibyendumajumdar