BasicBlockKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
BasicBlock kind.
public enum class BasicBlockKind
public enum BasicBlockKind
type BasicBlockKind =
Public Enum BasicBlockKind
- Inheritance
-
BasicBlockKind
Fields
Name | Value | Description |
---|---|---|
Entry | 0 | Indicates an entry block for a ControlFlowGraph, which is always the first block in Blocks. |
Exit | 1 | Indicates an exit block for a ControlFlowGraph, which is always the last block in Blocks. |
Block | 2 | Indicates an intermediate block for a ControlFlowGraph. |