comparison graal/GraalCompiler/src/com/sun/c1x/ir/BlockBegin.java @ 2722:23d0bcfa3c84

Removed two BlockBegin flags.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 16:39:54 +0200
parents ae1c50a03297
children 173067211acb
comparison
equal deleted inserted replaced
2721:3fbe58ac818d 2722:23d0bcfa3c84
78 78
79 /** 79 /**
80 * An enumeration of flags for block entries indicating various things. 80 * An enumeration of flags for block entries indicating various things.
81 */ 81 */
82 public enum BlockFlag { 82 public enum BlockFlag {
83 StandardEntry,
84 BackwardBranchTarget,
85 ParserLoopHeader, 83 ParserLoopHeader,
86 LinearScanLoopHeader, 84 LinearScanLoopHeader,
87 LinearScanLoopEnd; 85 LinearScanLoopEnd;
88 86
89 public final int mask = 1 << ordinal(); 87 public final int mask = 1 << ordinal();