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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManu <manu-silicon@users.noreply.github.com>2015-11-18 08:25:45 +0300
committerManu <manu-silicon@users.noreply.github.com>2015-11-18 08:25:45 +0300
commit19662e05837a994124642ca6746ef2c6c80348fe (patch)
tree8845652151089fc68abd7b97fd694def7e636be0 /src/ILCompiler.Compiler
parentdca4cf7bb11b9cfb9fff1f3ca9e0e6144a64f09c (diff)
Fixed missing }. Moved comments to individual values of the enum for better IntelliSense.
Diffstat (limited to 'src/ILCompiler.Compiler')
-rw-r--r--src/ILCompiler.Compiler/src/Compiler/MethodCode.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ILCompiler.Compiler/src/Compiler/MethodCode.cs b/src/ILCompiler.Compiler/src/Compiler/MethodCode.cs
index 57f396537..8fbec82d0 100644
--- a/src/ILCompiler.Compiler/src/Compiler/MethodCode.cs
+++ b/src/ILCompiler.Compiler/src/Compiler/MethodCode.cs
@@ -23,19 +23,20 @@ namespace ILCompiler
{
public BlockType Block;
public int Offset;
+ }
/// <summary>
/// Various type of block.
- /// * <see cref="Unknown"/> Not a generated block.
- /// * <see cref="Code"/>To represent code.
- /// * <see cref="ColdCode"/>To represent cold code (i.e. code not called frequently).
- /// * <see cref="ROData"/>Read-only data.
/// </summary>
public enum BlockType : sbyte
{
+ /// <summary>Not a generated block.</summary>
Unknown = -1,
+ /// <summary>Represent code.</summary>
Code = 0,
+ /// <summary>Represent cold code (i.e. code not called frequently).</summary>
ColdCode = 1,
+ /// <summary>Read-only data.</summary>
ROData = 2
}