From: Pat Gavlin Date: Wed, 12 Apr 2017 15:53:00 +0000 (-0700) Subject: Format code. X-Git-Tag: submit/tizen/20210909.063632~11030^2~7284^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79be873c3fa6cb3cbb8a8d02ddb0249bbcb6e5b0;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Format code. Commit migrated from https://github.com/dotnet/coreclr/commit/f719558a91a7ae6431275cac2577804ba153fc28 --- 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);