Skip to content

Commit 42e0205

Browse files
committed
jit-format
1 parent b819c9b commit 42e0205

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/coreclr/jit/lower.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5955,8 +5955,7 @@ void Lowering::LowerRetStruct(GenTreeUnOp* ret)
59555955
// We have a non-struct return value that needs to be widened, but we can't widen the
59565956
// indirection safely since that could cause the read to overrun the end of a buffer.
59575957
// Instead, wrap the indirection in a cast to zero extend it.
5958-
GenTreeCast* cast =
5959-
m_compiler->gtNewCastNode(nativeReturnType, retVal, true, TypeGet(retVal));
5958+
GenTreeCast* cast = m_compiler->gtNewCastNode(nativeReturnType, retVal, true, TypeGet(retVal));
59605959
assert(cast->IsZeroExtending());
59615960
BlockRange().InsertBefore(ret, cast);
59625961
ContainCheckCast(cast);

0 commit comments

Comments
 (0)