Welcome to the GBF Test Portal

This was built to track decompiler and CFG progress.

Decompiler Output

function fib(n#0)
{
    // RegionId(1)
    if (n#0 < 2) 
    {
        return n#0;
    }
    // RegionId(2)
    else
    {
        fn_call#2 = fib#1(n#0 - 1);
        fn_call#3 = fib#1(n#0 - 2);
        return fn_call#2 + fn_call#3;
    }
}