summaryrefslogtreecommitdiff
path: root/src/jit/codegenclassic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/codegenclassic.h')
-rw-r--r--src/jit/codegenclassic.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/jit/codegenclassic.h b/src/jit/codegenclassic.h
index 3a88c83915..eb4aeb7754 100644
--- a/src/jit/codegenclassic.h
+++ b/src/jit/codegenclassic.h
@@ -283,7 +283,7 @@ void genCodeForJumpTable(GenTreePtr tree);
void genCodeForSwitchTable(GenTreePtr tree);
void genCodeForSwitch(GenTreePtr tree);
-size_t genPushArgList(GenTreePtr call);
+size_t genPushArgList(GenTreeCall* call);
#ifdef _TARGET_ARM_
// We are generating code for a promoted struct local variable. Fill the next slot (register or
@@ -351,15 +351,15 @@ bool genFillSlotFromPromotedStruct(GenTreePtr arg,
// of cpBlk).
regMaskTP genFindDeadFieldRegs(GenTreePtr cpBlk);
-void SetupLateArgs(GenTreePtr call);
+void SetupLateArgs(GenTreeCall* call);
#ifdef _TARGET_ARM_
void PushMkRefAnyArg(GenTreePtr mkRefAnyTree, fgArgTabEntryPtr curArgTabEntry, regMaskTP regNeedMask);
#endif // _TARGET_ARM_
-regMaskTP genLoadIndirectCallTarget(GenTreePtr call);
+regMaskTP genLoadIndirectCallTarget(GenTreeCall* call);
-regMaskTP genCodeForCall(GenTreePtr call, bool valUsed);
+regMaskTP genCodeForCall(GenTreeCall* call, bool valUsed);
GenTreePtr genGetAddrModeBase(GenTreePtr tree);