summaryrefslogtreecommitdiff
path: root/src/jit
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2017-01-09 11:20:23 -0800
committerPat Gavlin <pagavlin@microsoft.com>2017-01-09 11:20:23 -0800
commit53ef803c69af6b04cbd88e0be4513758b30263b1 (patch)
tree0c9b18cdc2b624f61ce6551a4dcdcceebec0bff6 /src/jit
parent474e27a5ac4ee651e2456a7503d4a8cf2ce7b00c (diff)
downloadcoreclr-53ef803c69af6b04cbd88e0be4513758b30263b1.tar.gz
coreclr-53ef803c69af6b04cbd88e0be4513758b30263b1.tar.bz2
coreclr-53ef803c69af6b04cbd88e0be4513758b30263b1.zip
Fix some comments.
Diffstat (limited to 'src/jit')
-rw-r--r--src/jit/liveness.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jit/liveness.cpp b/src/jit/liveness.cpp
index 965c6fa773..79f3b8d65f 100644
--- a/src/jit/liveness.cpp
+++ b/src/jit/liveness.cpp
@@ -1121,9 +1121,9 @@ class LiveVarAnalysis
}
}
- /* For lvaKeepAliveAndReportThis methods, "m_compiler" has to be kept alive everywhere
+ /* For lvaKeepAliveAndReportThis methods, "this" has to be kept alive everywhere
Note that a function may end in a throw on an infinite loop (as opposed to a return).
- "m_compiler" has to be alive everywhere even in such methods. */
+ "this" has to be alive everywhere even in such methods. */
if (keepAliveThis)
{
@@ -1137,7 +1137,7 @@ class LiveVarAnalysis
m_heapLiveIn = (m_heapLiveOut && !block->bbHeapDef) || block->bbHeapUse;
- /* Can exceptions from m_compiler block be handled (in m_compiler function)? */
+ /* Can exceptions from this block be handled (in this function)? */
if (m_compiler->ehBlockHasExnFlowDsc(block))
{