From 008600b9757e12bef39f9ddbdc9d88c99de50679 Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Tue, 10 Jan 2017 11:12:22 -0800 Subject: [PATCH] Format code. Commit migrated from https://github.com/dotnet/coreclr/commit/9cc550506b4c68a30bc1ff3a6321dbb9f4225838 --- src/coreclr/src/jit/liveness.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/coreclr/src/jit/liveness.cpp b/src/coreclr/src/jit/liveness.cpp index f06ca48..60ef1a1 100644 --- a/src/coreclr/src/jit/liveness.cpp +++ b/src/coreclr/src/jit/liveness.cpp @@ -1155,9 +1155,12 @@ class LiveVarAnalysis noway_assert(block->bbFlags & BBF_INTERNAL); - liveInChanged = !VarSetOps::Equal(m_compiler, VarSetOps::Intersection(m_compiler, block->bbLiveIn, m_liveIn), m_liveIn); + liveInChanged = + !VarSetOps::Equal(m_compiler, VarSetOps::Intersection(m_compiler, block->bbLiveIn, m_liveIn), + m_liveIn); if (liveInChanged || - !VarSetOps::Equal(m_compiler, VarSetOps::Intersection(m_compiler, block->bbLiveOut, m_liveOut), m_liveOut)) + !VarSetOps::Equal(m_compiler, VarSetOps::Intersection(m_compiler, block->bbLiveOut, m_liveOut), + m_liveOut)) { #ifdef DEBUG if (m_compiler->verbose) -- 2.7.4