From e679f6fc43115efbf8ede3b3ff2692280ec9c9e1 Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Wed, 8 Mar 2017 08:59:08 -0800 Subject: [PATCH] Format code. Commit migrated from https://github.com/dotnet/coreclr/commit/8f11e0fb6e3ce11980def0501652c6f8d711154d --- src/coreclr/src/jit/lsra.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/coreclr/src/jit/lsra.cpp b/src/coreclr/src/jit/lsra.cpp index be787c6..fe7b599 100644 --- a/src/coreclr/src/jit/lsra.cpp +++ b/src/coreclr/src/jit/lsra.cpp @@ -731,7 +731,8 @@ void LinearScan::associateRefPosWithInterval(RefPosition* rp) } } - rp->lastUse = (rp->refType != RefTypeExpUse) && (rp->refType != RefTypeParamDef) && (rp->refType != RefTypeZeroInit); + rp->lastUse = (rp->refType != RefTypeExpUse) && (rp->refType != RefTypeParamDef) && + (rp->refType != RefTypeZeroInit); } else if (RefTypeIsUse(rp->refType)) { -- 2.7.4