#ifndef jit_none_SharedICHelpers_none_h
#define jit_none_SharedICHelpers_none_h
namespace js {
namespace jit {
static const size_t ICStackValueOffset = 0;
inline void EmitRestoreTailCallReg(MacroAssembler&) { MOZ_CRASH(); }
inline void EmitRepushTailCallReg(MacroAssembler&) { MOZ_CRASH(); }
inline void EmitCallIC(MacroAssembler&, const ICEntry*, CodeOffset*) {
MOZ_CRASH();
}
inline void EmitEnterTypeMonitorIC(MacroAssembler&, size_t v = 0) {
MOZ_CRASH();
}
inline void EmitReturnFromIC(MacroAssembler&) { MOZ_CRASH(); }
inline void EmitBaselineLeaveStubFrame(MacroAssembler&, bool v = false) {
MOZ_CRASH();
}
inline void EmitStubGuardFailure(MacroAssembler&) { MOZ_CRASH(); }
template <typename T>
inline void EmitPreBarrier(MacroAssembler&, T, MIRType) {
MOZ_CRASH();
}
} }
#endif