* Move DynamicHelperFrame::UpdateRegDisplay into cgenx86.cpp
* Fix x86/Windows link error
virtual void GcScanRoots(promote_func *fn, ScanContext* sc);
#ifdef _TARGET_X86_
- virtual void UpdateRegDisplay(const PREGDISPLAY pRD)
- {
- WRAPPER_NO_CONTRACT;
- UpdateRegDisplayHelper(pRD, 0);
- }
+ virtual void UpdateRegDisplay(const PREGDISPLAY pRD);
#endif
virtual ETransitionType GetTransitionType()
RETURN;
}
+#ifdef FEATURE_READYTORUN
+void DynamicHelperFrame::UpdateRegDisplay(const PREGDISPLAY pRD)
+{
+ WRAPPER_NO_CONTRACT;
+ UpdateRegDisplayHelper(pRD, 0);
+}
+#endif // FEATURE_READYTORUN
+
//------------------------------------------------------------------------
// This is declared as returning WORD instead of PRD_TYPE because of
// header issues with cgencpu.h including dbginterface.h.