comparison graal/GraalCompiler/src/com/sun/c1x/lir/LIRList.java @ 2516:a384fac3fd34

Removed anything OSR-related.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 15:49:27 +0200
parents 16b9a8b5ad39
children b2c1e959be46
comparison
equal deleted inserted replaced
2515:4fdef1464592 2516:a384fac3fd34
420 420
421 // print flags 421 // print flags
422 if (x.checkBlockFlag(BlockBegin.BlockFlag.StandardEntry)) { 422 if (x.checkBlockFlag(BlockBegin.BlockFlag.StandardEntry)) {
423 TTY.print("std "); 423 TTY.print("std ");
424 } 424 }
425 if (x.checkBlockFlag(BlockBegin.BlockFlag.OsrEntry)) {
426 TTY.print("osr ");
427 }
428 if (x.checkBlockFlag(BlockBegin.BlockFlag.ExceptionEntry)) { 425 if (x.checkBlockFlag(BlockBegin.BlockFlag.ExceptionEntry)) {
429 TTY.print("ex "); 426 TTY.print("ex ");
430 } 427 }
431 if (x.checkBlockFlag(BlockBegin.BlockFlag.SubroutineEntry)) { 428 if (x.checkBlockFlag(BlockBegin.BlockFlag.SubroutineEntry)) {
432 TTY.print("jsr "); 429 TTY.print("jsr ");