Format code.
authorPat Gavlin <pagavlin@microsoft.com>
Thu, 23 Feb 2017 18:48:25 +0000 (10:48 -0800)
committerPat Gavlin <pagavlin@microsoft.com>
Thu, 23 Feb 2017 18:48:25 +0000 (10:48 -0800)
Commit migrated from https://github.com/dotnet/coreclr/commit/187255c281084156bbc103d2c17729a0ab0c96b6

src/coreclr/src/jit/emit.cpp
src/coreclr/src/jit/emit.h

index 131fcfc..12ca9f5 100644 (file)
@@ -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
 
 //
index 186c60f..91cf96e 100644 (file)
@@ -1521,8 +1521,7 @@ protected:
         EpilogList*  elNext;
         emitLocation elLoc;
 
-        EpilogList()
-            : elNext(nullptr), elLoc()
+        EpilogList() : elNext(nullptr), elLoc()
         {
         }
     };