From ff4c9002c45e2b3244a9e9588a3418758e899158 Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Mon, 9 Jan 2017 11:20:23 -0800 Subject: [PATCH] Fix some comments. Commit migrated from https://github.com/dotnet/coreclr/commit/53ef803c69af6b04cbd88e0be4513758b30263b1 --- src/coreclr/src/jit/liveness.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/coreclr/src/jit/liveness.cpp b/src/coreclr/src/jit/liveness.cpp index 965c6fa..79f3b8d 100644 --- a/src/coreclr/src/jit/liveness.cpp +++ b/src/coreclr/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)) { -- 2.7.4