comparison graal/GraalCompiler/src/com/sun/c1x/lir/LIRList.java @ 2693:bcbda467e1ae

Clean up; removed subroutine block flag.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 18 May 2011 14:37:57 +0200
parents 0ea5f12e873a
children bd4c3be86fb7
comparison
equal deleted inserted replaced
2689:8fcf5179aafd 2693:bcbda467e1ae
412 412
413 // print flags 413 // print flags
414 if (x.checkBlockFlag(BlockBegin.BlockFlag.ExceptionEntry)) { 414 if (x.checkBlockFlag(BlockBegin.BlockFlag.ExceptionEntry)) {
415 TTY.print("ex "); 415 TTY.print("ex ");
416 } 416 }
417 if (x.checkBlockFlag(BlockBegin.BlockFlag.SubroutineEntry)) {
418 TTY.print("jsr ");
419 }
420 if (x.checkBlockFlag(BlockBegin.BlockFlag.BackwardBranchTarget)) { 417 if (x.checkBlockFlag(BlockBegin.BlockFlag.BackwardBranchTarget)) {
421 TTY.print("bb "); 418 TTY.print("bb ");
422 } 419 }
423 if (x.checkBlockFlag(BlockBegin.BlockFlag.LinearScanLoopHeader)) { 420 if (x.checkBlockFlag(BlockBegin.BlockFlag.LinearScanLoopHeader)) {
424 TTY.print("lh "); 421 TTY.print("lh ");