summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityamandaleeka@users.noreply.github.com>2017-10-09 11:56:57 -0700
committerGitHub <noreply@github.com>2017-10-09 11:56:57 -0700
commitee8da341641e69acd232cc5d873b05605671a61e (patch)
treefa8ec89e7f870afb5856c1d15614cd4a7133f820
parent0ba964d19b84a690a451a61a38fa12c4ebf4f890 (diff)
parent8f7a2c421dd417659f9a0283dad1a3aef9880d0d (diff)
downloadcoreclr-ee8da341641e69acd232cc5d873b05605671a61e.tar.gz
coreclr-ee8da341641e69acd232cc5d873b05605671a61e.tar.bz2
coreclr-ee8da341641e69acd232cc5d873b05605671a61e.zip
Merge pull request #14386 from adityamandaleeka/ryujit_doc_fix
Fix incorrect name of class in RyuJIT overview
-rw-r--r--Documentation/botr/ryujit-overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/botr/ryujit-overview.md b/Documentation/botr/ryujit-overview.md
index 6432d1c478..94eeb0660f 100644
--- a/Documentation/botr/ryujit-overview.md
+++ b/Documentation/botr/ryujit-overview.md
@@ -381,7 +381,7 @@ The “@ 15” is the location number of the node. The “0=1” indicates that
The RyuJIT register allocator uses a Linear Scan algorithm, with an approach similar to [[2]](#[2]). In brief, it operates on two main data structures:
-* `Intervals` (representing live ranges of variables or tree expressions) and `RegRecords` (representing physical registers), both of which derive from `Referent`.
+* `Intervals` (representing live ranges of variables or tree expressions) and `RegRecords` (representing physical registers), both of which derive from `Referenceable`.
* `RefPositions`, which represent uses or defs (or variants thereof, such as ExposedUses) of either `Intervals` or physical registers.
Pre-conditions: