From 4004718652a7e5b83b20e0b4eee2e11a30dd3e06 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Tue, 3 Nov 2020 10:23:03 -0500 Subject: [PATCH] Fix comment causing formatting leg in CI to fail (#44197) --- src/coreclr/src/jit/lowerxarch.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/coreclr/src/jit/lowerxarch.cpp b/src/coreclr/src/jit/lowerxarch.cpp index 28ac2ca..8a02933 100644 --- a/src/coreclr/src/jit/lowerxarch.cpp +++ b/src/coreclr/src/jit/lowerxarch.cpp @@ -5470,7 +5470,8 @@ void Lowering::ContainCheckHWIntrinsic(GenTreeHWIntrinsic* node) case NI_AVX2_ShiftRightLogical128BitLane: { #if DEBUG - // These intrinsics should have been marked contained by the general-purpose handling earlier in the method. + // These intrinsics should have been marked contained by the general-purpose handling + // earlier in the method. GenTree* lastOp = HWIntrinsicInfo::lookupLastOp(node); assert(lastOp != nullptr); -- 2.7.4