Skip to content

Commit e21b8df

Browse files
committed
fix formatting
1 parent 18a2baf commit e21b8df

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/coreclr/jit/emit.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ class emitter
775775
unsigned _idSmallDsc : 1; // is this a "small" descriptor?
776776
unsigned _idLargeCns : 1; // does a large constant follow?
777777
unsigned _idLargeDsp : 1; // does a large displacement follow?
778-
unsigned _idCall : 1; // this is a call
778+
unsigned _idCall : 1; // this is a call
779779

780780
// We have several pieces of information we need to encode but which are only applicable
781781
// to a subset of instrDescs. To accommodate that, we define a several _idCustom# bitfields

src/coreclr/jit/emitxarch.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -16570,9 +16570,9 @@ size_t emitter::emitOutputInstr(insGroup* ig, instrDesc* id, BYTE** dp)
1657016570
#ifdef TARGET_X86
1657116571
dst += emitOutputWord(dst, code | 0x0500);
1657216572
#else // TARGET_AMD64
16573-
// Amd64: addr fits within 32-bits and can be encoded as a displacement relative to zero.
16574-
// This addr mode should never be used while generating relocatable ngen code nor if
16575-
// the addr can be encoded as pc-relative address.
16573+
// Amd64: addr fits within 32-bits and can be encoded as a displacement relative to zero.
16574+
// This addr mode should never be used while generating relocatable ngen code nor if
16575+
// the addr can be encoded as pc-relative address.
1657616576
noway_assert(!emitComp->opts.compReloc);
1657716577
noway_assert(codeGen->genAddrRelocTypeHint((size_t)addr) != IMAGE_REL_BASED_REL32);
1657816578
noway_assert(static_cast<int>(reinterpret_cast<intptr_t>(addr)) == (ssize_t)addr);

src/coreclr/jit/jitgcinfo.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ class GCInfo
183183
}
184184

185185
unsigned short rpdIsThis : 1; // is it the 'this' pointer
186-
unsigned short rpdCall : 1; // is this a true call site?
187-
unsigned short : 1; // Padding bit, so next two start on a byte boundary
186+
unsigned short rpdCall : 1; // is this a true call site?
187+
unsigned short : 1; // Padding bit, so next two start on a byte boundary
188188
unsigned short rpdCallGCrefRegs : CNT_CALL_GC_REGS; // Callee-saved and return registers containing GC pointers.
189189
unsigned short rpdCallByrefRegs : CNT_CALL_GC_REGS; // Callee-saved and return registers containing byrefs.
190190

0 commit comments

Comments
 (0)