From 2772daebb8f4f3211b80425c6de9403e33ec471b Mon Sep 17 00:00:00 2001 From: Manish Godse <61718172+mangod9@users.noreply.github.com> Date: Wed, 13 Oct 2021 00:15:33 -0700 Subject: [PATCH] Fix build break Notice the unescaped '\' within the comments causing a build break on GCC 11 --- src/coreclr/jit/morph.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/coreclr/jit/morph.cpp b/src/coreclr/jit/morph.cpp index 2f6f32593a7175..1187d4ba193a06 100644 --- a/src/coreclr/jit/morph.cpp +++ b/src/coreclr/jit/morph.cpp @@ -10907,6 +10907,7 @@ GenTree* Compiler::fgMorphCastedBitwiseOp(GenTreeOp* tree) return nullptr; } + /* // Reuse gentree nodes: // // tree op1 @@ -10916,6 +10917,7 @@ GenTree* Compiler::fgMorphCastedBitwiseOp(GenTreeOp* tree) // x y x y // // (op2 becomes garbage) + */ tree->gtOp1 = op1->AsCast()->CastOp(); tree->gtOp2 = op2->AsCast()->CastOp();