Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Reflection.Emit/FlowControl.cs')
-rw-r--r--mcs/class/corlib/System.Reflection.Emit/FlowControl.cs63
1 files changed, 0 insertions, 63 deletions
diff --git a/mcs/class/corlib/System.Reflection.Emit/FlowControl.cs b/mcs/class/corlib/System.Reflection.Emit/FlowControl.cs
deleted file mode 100644
index b714362cb11..00000000000
--- a/mcs/class/corlib/System.Reflection.Emit/FlowControl.cs
+++ /dev/null
@@ -1,63 +0,0 @@
-// FlowControl.cs
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-
-
-
-namespace System.Reflection.Emit {
-
- /// <summary>
- /// Describes how an instruction alters the flow of control.
- /// </summary>
- public enum FlowControl {
-
- /// <summary>
- /// Branch instruction (ex: br, leave).
- /// </summary>
- Branch = 0,
-
- /// <summary>
- /// Break instruction (ex: break).
- /// </summary>
- Break = 1,
-
- /// <summary>
- /// Call instruction (ex: jmp, call, callvirt).
- /// </summary>
- Call = 2,
-
- /// <summary>
- /// Conditional branch instruction (ex: brtrue, brfalse).
- /// </summary>
- Cond_Branch = 3,
-
- /// <summary>
- /// Changes the behaviour of or provides additional
- /// about a subsequent instruction.
- /// (ex: prefixes such as volatile, unaligned).
- /// </summary>
- Meta = 4,
-
- /// <summary>
- /// Transition to the next instruction.
- /// </summary>
- Next = 5,
-
- /// <summary>
- /// Annotation for ann.phi instruction.
- /// </summary>
- Phi = 6,
-
- /// <summary>
- /// Return instruction.
- /// </summary>
- Return = 7,
-
- /// <summary>
- /// Throw instruction.
- /// </summary>
- Throw = 8
- }
-
-}
-