diff options
author | Pat Gavlin <pagavlin@microsoft.com> | 2017-03-08 08:59:08 -0800 |
---|---|---|
committer | Pat Gavlin <pagavlin@microsoft.com> | 2017-03-08 08:59:08 -0800 |
commit | 8f11e0fb6e3ce11980def0501652c6f8d711154d (patch) | |
tree | ba861f3e9b6ce0a45bb2c962a3fcd09493dbb2d3 /src | |
parent | adf3dd7ccdb8f25173d0b96872c4916dd50be20c (diff) | |
download | coreclr-8f11e0fb6e3ce11980def0501652c6f8d711154d.tar.gz coreclr-8f11e0fb6e3ce11980def0501652c6f8d711154d.tar.bz2 coreclr-8f11e0fb6e3ce11980def0501652c6f8d711154d.zip |
Format code.
Diffstat (limited to 'src')
-rw-r--r-- | src/jit/lsra.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jit/lsra.cpp b/src/jit/lsra.cpp index be787c6343..fe7b599c1e 100644 --- a/src/jit/lsra.cpp +++ b/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)) { |