projects
/
platform
/
upstream
/
dotnet
/
runtime.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f440aa7
)
[x86/Linux] fix a typo of FillRegDisplay method. (dotnet/coreclr#10547)
author
ragmani
<ragmani0216@gmail.com>
Wed, 29 Mar 2017 08:21:25 +0000
(17:21 +0900)
committer
Jan Vorlicek
<janvorli@microsoft.com>
Wed, 29 Mar 2017 08:21:25 +0000
(10:21 +0200)
Signed-off-by: ragmani <ragmani0216@gmail.com>
Commit migrated from https://github.com/dotnet/coreclr/commit/
a1ad1592f45bdfc544deedb1d2e88e9a35895bb1
src/coreclr/src/inc/regdisp.h
patch
|
blob
|
history
diff --git
a/src/coreclr/src/inc/regdisp.h
b/src/coreclr/src/inc/regdisp.h
index
90669dc
..
a361dca
100644
(file)
--- a/
src/coreclr/src/inc/regdisp.h
+++ b/
src/coreclr/src/inc/regdisp.h
@@
-396,7
+396,7
@@
inline void FillRegDisplay(const PREGDISPLAY pRD, PT_CONTEXT pctx, PT_CONTEXT pC
#elif defined(_TARGET_X86_) // _TARGET_ARM_
for (int i = 0; i < 7; i++)
{
- *(&pRD->ctxPtrsOne.E
si + i) = (&pctx->Es
i + i);
+ *(&pRD->ctxPtrsOne.E
di + i) = (&pctx->Ed
i + i);
}
#else // _TARGET_X86_
PORTABILITY_ASSERT("FillRegDisplay");