summaryrefslogtreecommitdiff
path: root/src/jit/importer.cpp
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2019-01-09 16:05:45 -0800
committerBrian Sullivan <briansul@microsoft.com>2019-01-09 16:05:45 -0800
commiteb8762330a703aedfea16189b6f0813e2217638d (patch)
tree0a83dbdc195a6f81d00684c67aa451f2a4bb66fe /src/jit/importer.cpp
parent8c12e27d308a35132f8608c0e6f988ce9617c59a (diff)
downloadcoreclr-eb8762330a703aedfea16189b6f0813e2217638d.tar.gz
coreclr-eb8762330a703aedfea16189b6f0813e2217638d.tar.bz2
coreclr-eb8762330a703aedfea16189b6f0813e2217638d.zip
jit format
Diffstat (limited to 'src/jit/importer.cpp')
-rw-r--r--src/jit/importer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jit/importer.cpp b/src/jit/importer.cpp
index 37b506b6af..6396e219e7 100644
--- a/src/jit/importer.cpp
+++ b/src/jit/importer.cpp
@@ -8591,7 +8591,7 @@ var_types Compiler::impImportCall(OPCODE opcode,
// See if we can devirtualize.
- bool explicitTailCall = (tailCall & PREFIX_TAILCALL_EXPLICIT) != 0;
+ bool explicitTailCall = (tailCall & PREFIX_TAILCALL_EXPLICIT) != 0;
const bool isLateDevirtualization = false;
impDevirtualizeCall(call->AsCall(), &callInfo->hMethod, &callInfo->methodFlags, &callInfo->contextHandle,
&exactContextHnd, isLateDevirtualization, explicitTailCall);
@@ -20175,7 +20175,7 @@ bool Compiler::IsMathIntrinsic(GenTree* tree)
// contextHandle -- [IN/OUT] context handle for the call. Updated iff call devirtualized.
// exactContextHnd -- [OUT] updated context handle iff call devirtualized
// isLateDevirtualization -- if devirtualization is happening after importation
-// isTailCall -- [IN/OUT] true if we plan on using a tail call
+// isTailCall -- [IN/OUT] true if we plan on using a tail call
//
// Notes:
// Virtual calls in IL will always "invoke" the base class method.
@@ -20654,7 +20654,7 @@ void Compiler::impDevirtualizeCall(GenTreeCall* call,
{
JITDUMP("Clearing the implicit tail call flag\n");
- // If set, we clear the implicit tail call flag
+ // If set, we clear the implicit tail call flag
// as we just introduced a new address taken local variable
//
call->gtCallMoreFlags &= ~GTF_CALL_M_IMPLICIT_TAILCALL;