From 1ac8710f2f244c72665de2ec51735e29ae9aa4ed Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Thu, 23 Feb 2017 10:48:25 -0800 Subject: [PATCH] Format code. Commit migrated from https://github.com/dotnet/coreclr/commit/187255c281084156bbc103d2c17729a0ab0c96b6 --- src/coreclr/src/jit/emit.cpp | 5 ++--- src/coreclr/src/jit/emit.h | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/coreclr/src/jit/emit.cpp b/src/coreclr/src/jit/emit.cpp index 131fcfc..12ca9f5 100644 --- a/src/coreclr/src/jit/emit.cpp +++ b/src/coreclr/src/jit/emit.cpp @@ -1983,9 +1983,9 @@ void emitter::emitEndFnEpilog() #ifdef JIT32_GCENCODER assert(emitEpilogLast != nullptr); - UNATIVE_OFFSET epilogBegCodeOffset = emitEpilogLast->elLoc.CodeOffset(this); + UNATIVE_OFFSET epilogBegCodeOffset = emitEpilogLast->elLoc.CodeOffset(this); UNATIVE_OFFSET epilogExitSeqStartCodeOffset = emitExitSeqBegLoc.CodeOffset(this); - UNATIVE_OFFSET newSize = epilogExitSeqStartCodeOffset - epilogBegCodeOffset; + UNATIVE_OFFSET newSize = epilogExitSeqStartCodeOffset - epilogBegCodeOffset; /* Compute total epilog size */ assert(emitEpilogSize == 0 || emitEpilogSize == newSize); // All epilogs must be identical @@ -2057,7 +2057,6 @@ void emitter::emitEndFuncletEpilog() #endif // FEATURE_EH_FUNCLETS - #ifdef JIT32_GCENCODER // diff --git a/src/coreclr/src/jit/emit.h b/src/coreclr/src/jit/emit.h index 186c60f..91cf96e 100644 --- a/src/coreclr/src/jit/emit.h +++ b/src/coreclr/src/jit/emit.h @@ -1521,8 +1521,7 @@ protected: EpilogList* elNext; emitLocation elLoc; - EpilogList() - : elNext(nullptr), elLoc() + EpilogList() : elNext(nullptr), elLoc() { } }; -- 2.7.4