comparison graal/GraalCompiler/src/com/sun/c1x/debug/CFGPrinter.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 e0e89714e2f1
children 773189811d10
comparison
equal deleted inserted replaced
2689:8fcf5179aafd 2693:bcbda467e1ae
151 151
152 out.print("flags "); 152 out.print("flags ");
153 if (block.isExceptionEntry()) { 153 if (block.isExceptionEntry()) {
154 out.print("\"ex\" "); 154 out.print("\"ex\" ");
155 } 155 }
156 if (block.isSubroutineEntry()) {
157 out.print("\"sr\" ");
158 }
159 if (block.isBackwardBranchTarget()) { 156 if (block.isBackwardBranchTarget()) {
160 out.print("\"bb\" "); 157 out.print("\"bb\" ");
161 } 158 }
162 if (block.isParserLoopHeader()) { 159 if (block.isParserLoopHeader()) {
163 out.print("\"plh\" "); 160 out.print("\"plh\" ");