summaryrefslogtreecommitdiff
path: root/src/jit/lower.cpp
diff options
context:
space:
mode:
authorPhil Garcia <phil@thinkedge.com>2018-06-29 10:33:35 -0700
committerStephen Toub <stoub@microsoft.com>2018-06-29 13:33:35 -0400
commitd6950568c83269002a41f204400dcb82ced96e14 (patch)
treeda61e8f61907867e7aa6c08db1ad81390810b011 /src/jit/lower.cpp
parentc209f0bf2b0eb5bc6e0a35253457e2f9919f28dc (diff)
downloadcoreclr-d6950568c83269002a41f204400dcb82ced96e14.tar.gz
coreclr-d6950568c83269002a41f204400dcb82ced96e14.tar.bz2
coreclr-d6950568c83269002a41f204400dcb82ced96e14.zip
Corrected a few typos in the documentation and comments (#18706)
* Corrected a few typos in the documentation and comments * Corrected a few typos in the documentation and comments * Corrected a few typos in the documentation and comments * Corrected a few typos in the documentation and comments * Corrected a few typos in the documentation and comments * Corrected a few typos in the documentation and comments
Diffstat (limited to 'src/jit/lower.cpp')
-rw-r--r--src/jit/lower.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jit/lower.cpp b/src/jit/lower.cpp
index 093c2f9611..b477e20e82 100644
--- a/src/jit/lower.cpp
+++ b/src/jit/lower.cpp
@@ -817,8 +817,8 @@ GenTree* Lowering::LowerSwitch(GenTree* node)
// If the jump table contains less than 32 (64 on 64 bit targets) entries and there
// are at most 2 distinct jump targets then the jump table can be converted to a word
// of bits where a 0 bit corresponds to one jump target and a 1 bit corresponds to the
-// other jump target. Instead of the indirect jump a BT-JCC sequnce is used to jump
-// to the appropiate target:
+// other jump target. Instead of the indirect jump a BT-JCC sequence is used to jump
+// to the appropriate target:
// mov eax, 245 ; jump table converted to a "bit table"
// bt eax, ebx ; ebx is supposed to contain the switch value
// jc target1
@@ -1028,7 +1028,7 @@ GenTree* Lowering::NewPutArg(GenTreeCall* call, GenTree* arg, fgArgTabEntry* inf
#ifdef _TARGET_ARMARCH_
// Mark contained when we pass struct
- // GT_FIELD_LIST is always marked conatained when it is generated
+ // GT_FIELD_LIST is always marked contained when it is generated
if (type == TYP_STRUCT)
{
arg->SetContained();