From 15ecc0b1325897726de09a354246e25a787570fa Mon Sep 17 00:00:00 2001 From: Brian Bohe Date: Fri, 21 Feb 2020 14:56:32 -0800 Subject: [PATCH] Adding comments --- src/coreclr/src/jit/emit.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/coreclr/src/jit/emit.cpp b/src/coreclr/src/jit/emit.cpp index 9770add..0fc99a6 100644 --- a/src/coreclr/src/jit/emit.cpp +++ b/src/coreclr/src/jit/emit.cpp @@ -65,7 +65,13 @@ UNATIVE_OFFSET emitLocation::GetFuncletPrologOffset(emitter* emit) const return emit->emitCurIGsize; } -// Returns true if the emitter is on the next instruction of the same group than this emitLocation +//------------------------------------------------------------------------ +// IsPreviousIns: Returns true if the emitter is on the next instruction +// of the same group than this emitLocation. +// +// Arguments: +// emit - an emitter* instance +// bool emitLocation::IsPreviousIns(const emitter* emit) const { assert(Valid()); -- 2.7.4