diff options
author | Pat Gavlin <pagavlin@microsoft.com> | 2017-01-09 11:20:23 -0800 |
---|---|---|
committer | Pat Gavlin <pagavlin@microsoft.com> | 2017-01-09 11:20:23 -0800 |
commit | 53ef803c69af6b04cbd88e0be4513758b30263b1 (patch) | |
tree | 0c9b18cdc2b624f61ce6551a4dcdcceebec0bff6 /src | |
parent | 474e27a5ac4ee651e2456a7503d4a8cf2ce7b00c (diff) | |
download | coreclr-53ef803c69af6b04cbd88e0be4513758b30263b1.tar.gz coreclr-53ef803c69af6b04cbd88e0be4513758b30263b1.tar.bz2 coreclr-53ef803c69af6b04cbd88e0be4513758b30263b1.zip |
Fix some comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/jit/liveness.cpp | 6 |
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)) { |