Skip to content

Commit

Permalink
emitIns_A: add function header
Browse files Browse the repository at this point in the history
  • Loading branch information
SingleAccretion committed Mar 29, 2022
1 parent 4ea30c1 commit ed38ad8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/coreclr/jit/emitxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4362,6 +4362,14 @@ void emitter::emitIns_C(instruction ins, emitAttr attr, CORINFO_FIELD_HANDLE fld
emitAdjustStackDepthPushPop(ins);
}

//------------------------------------------------------------------------
// emitIns_A: Emit an instruction with one memory ("[address mode]") operand.
//
// Arguments:
// ins - The instruction to emit
// attr - The corresponding emit attribute
// indir - The memory operand, represented as an indirection tree
//
void emitter::emitIns_A(instruction ins, emitAttr attr, GenTreeIndir* indir)
{
ssize_t offs = indir->Offset();
Expand Down

0 comments on commit ed38ad8

Please sign in to comment.