From c9136eba336d58e4e1637c5f6e29a41e3426b9d9 Mon Sep 17 00:00:00 2001 From: Hyung-Kyu Choi Date: Thu, 30 Mar 2017 02:28:13 +0900 Subject: [PATCH] Fix indentation of diagram in comment (dotnet/coreclr#10554) Fix indentation of diagram in comment in Compiler::fgRecognizeAndMorphBitwiseRotation Signed-off-by: Hyung-Kyu Choi Commit migrated from https://github.com/dotnet/coreclr/commit/896b773e671cbc54f7a7dc53bb48bd2ff739f155 --- src/coreclr/src/jit/morph.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/coreclr/src/jit/morph.cpp b/src/coreclr/src/jit/morph.cpp index 0388303..48ed943 100644 --- a/src/coreclr/src/jit/morph.cpp +++ b/src/coreclr/src/jit/morph.cpp @@ -14184,13 +14184,13 @@ GenTreePtr Compiler::fgRecognizeAndMorphBitwiseRotation(GenTreePtr tree) // // OR ROL // / \ / \ - // LSH RSZ -> x y + // LSH RSZ -> x y // / \ / \ - // x AND x AND + // x AND x AND // / \ / \ - // y 31 ADD 31 + // y 31 ADD 31 // / \ - // NEG 32 + // NEG 32 // | // y // The patterns recognized: -- 2.7.4