summaryrefslogtreecommitdiff
path: root/src/inc/regdisp.h
diff options
context:
space:
mode:
authorSteve MacLean <Steve.MacLean@microsoft.com>2019-10-22 16:58:15 -0400
committerHyungju Lee <leee.lee@samsung.com>2020-10-30 18:27:38 +0900
commitbe1aa1bf368dd47765d429ee0e557d8cb26f9bfd (patch)
tree6121d87a7d7a547b18e4bb1f8f2021af23d223aa /src/inc/regdisp.h
parent4c3b471c380dcc01579c18ae5756480d27cd1ea1 (diff)
downloadcoreclr-accepted/tizen/5.5/unified/mobile/hotfix/20201103.003335.tar.gz
coreclr-accepted/tizen/5.5/unified/mobile/hotfix/20201103.003335.tar.bz2
coreclr-accepted/tizen/5.5/unified/mobile/hotfix/20201103.003335.zip
* Make ControllerStackInfo::m_returnFrame private * Make ControllerStackInfo always capture a return frame In case the active frame has no managed caller, capture the unmanaged frame * Fix step over stackalloc Generalize handling of stack allocations and stepping * Fix GetFunctionFromToken() argument checking Check token type is a method before creating a CordbFunction. Add extra assert to check for invalid tokens
Diffstat (limited to 'src/inc/regdisp.h')
-rw-r--r--src/inc/regdisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inc/regdisp.h b/src/inc/regdisp.h
index 4a7e57e63d..e43bd0013e 100644
--- a/src/inc/regdisp.h
+++ b/src/inc/regdisp.h
@@ -48,7 +48,7 @@ struct REGDISPLAY_BASE {
TADDR ControlPC;
};
-inline PCODE GetControlPC(REGDISPLAY_BASE *pRD) {
+inline PCODE GetControlPC(const REGDISPLAY_BASE *pRD) {
LIMITED_METHOD_DAC_CONTRACT;
return (PCODE)(pRD->ControlPC);
}