ControlFlowBranchSemantics 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.
Semantics associated with a ControlFlowBranch.
public enum class ControlFlowBranchSemantics
public enum ControlFlowBranchSemantics
type ControlFlowBranchSemantics =
Public Enum ControlFlowBranchSemantics
- Inheritance
-
ControlFlowBranchSemantics
Fields
Name | Value | Description |
---|---|---|
None | 0 | Represents a ControlFlowBranch with no associated semantics. |
Regular | 1 | Represents a regular ControlFlowBranch from a source basic block to a non-null destination basic block. |
Return | 2 | Represents a ControlFlowBranch to the exit block, i.e. the destination block has Exit. |
StructuredExceptionHandling | 3 | Represents a ControlFlowBranch with special structured exception handling semantics:
|
ProgramTermination | 4 | Represents a ControlFlowBranch to indicate flow transfer to the end of program execution. The destination basic block is null for this branch. |
Throw | 5 | Represents a ControlFlowBranch generated for an IThrowOperation with an explicit thrown exception. The destination basic block is null for this branch. |
Rethrow | 6 | Represents a ControlFlowBranch generated for an IThrowOperation with in implicit rethrown exception. The destination basic block is null for this branch. |
Error | 7 | Represents a ControlFlowBranch generated for error cases. |