summaryrefslogtreecommitdiff
path: root/src/jit/lower.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/lower.cpp')
-rw-r--r--src/jit/lower.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/jit/lower.cpp b/src/jit/lower.cpp
index edbbcbf8b6..7addb233a0 100644
--- a/src/jit/lower.cpp
+++ b/src/jit/lower.cpp
@@ -2969,16 +2969,16 @@ void Lowering::LowerInd(GenTreePtr* pTree)
// expressions that have side-effects.
// We then transform the tree into:
// <offset is null - no accumulated offset for the first index>
-// /--*  <arrObj>
-// +--*  <index0>
-// /--*  ArrIndex[i, ]
+// /--* <arrObj>
+// +--* <index0>
+// /--* ArrIndex[i, ]
// +--* <arrObj>
-// /--|  arrOffs[i, ]
+// /--| arrOffs[i, ]
// | +--* <arrObj>
// | +--* <index1>
-// +--*  ArrIndex[*,j]
+// +--* ArrIndex[*,j]
// +--* <arrObj>
-// /--|  arrOffs[*,j]
+// /--| arrOffs[*,j]
// +--* lclVar NewTemp
// /--* lea (scale = element size, offset = offset of first element)
//