Improve bytecode generation.

This commit is contained in:
James Roseborough
2010-08-11 00:17:45 +00:00
parent d27f2d6e20
commit a1e8df5a11
2 changed files with 4 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ public class UpvalInfo {
// check for previous assignment
loop: while ( true ) {
// invalid values terminate search
if ( v == VarInfo.INVALID )
if ( v == null || v == VarInfo.INVALID )
return;
// basic block for nil values is initial block