From 79be873c3fa6cb3cbb8a8d02ddb0249bbcb6e5b0 Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Wed, 12 Apr 2017 08:53:00 -0700 Subject: [PATCH] Format code. Commit migrated from https://github.com/dotnet/coreclr/commit/f719558a91a7ae6431275cac2577804ba153fc28 --- src/coreclr/src/jit/decomposelongs.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/coreclr/src/jit/decomposelongs.cpp b/src/coreclr/src/jit/decomposelongs.cpp index 2e70282..d284c1c 100644 --- a/src/coreclr/src/jit/decomposelongs.cpp +++ b/src/coreclr/src/jit/decomposelongs.cpp @@ -1149,11 +1149,11 @@ GenTree* DecomposeLongs::DecomposeShift(LIR::Use& use) Range().Remove(gtLong); - // Since we're left shifting at least 64 bits, we can remove the lo part of the shifted value iff - // it has no side effects. + // Since we're left shifting at least 64 bits, we can remove the lo part of the shifted value + // iff it has no side effects. // - // TODO-CQ: we could go perform this removal transitively (i.e. iteratively remove everything that - // feeds the lo operand while there are no side effects) + // TODO-CQ: we could go perform this removal transitively (i.e. iteratively remove everything + // that feeds the lo operand while there are no side effects) if ((loOp1->gtFlags & GTF_ALL_EFFECT) == 0) { Range().Remove(loOp1); @@ -1237,11 +1237,11 @@ GenTree* DecomposeLongs::DecomposeShift(LIR::Use& use) { assert(count >= 64); - // Since we're right shifting at least 64 bits, we can remove the hi part of the shifted value iff - // it has no side effects. + // Since we're right shifting at least 64 bits, we can remove the hi part of the shifted value + // iff it has no side effects. // - // TODO-CQ: we could go perform this removal transitively (i.e. iteratively remove everything that - // feeds the hi operand while there are no side effects) + // TODO-CQ: we could go perform this removal transitively (i.e. iteratively remove everything + // that feeds the hi operand while there are no side effects) if ((hiOp1->gtFlags & GTF_ALL_EFFECT) == 0) { Range().Remove(hiOp1); -- 2.7.4