summaryrefslogtreecommitdiff
path: root/src/classlibnative/bcltype/arraynative.cpp
diff options
context:
space:
mode:
authorSean Gillespie <sean@swgillespie.me>2017-01-06 16:21:11 -0800
committerGitHub <noreply@github.com>2017-01-06 16:21:11 -0800
commitc10c1ff8e3237689212606c9aa5153beec8a1778 (patch)
tree53041ba883979389d5eb22b43ce33df4312d5a68 /src/classlibnative/bcltype/arraynative.cpp
parent548aec353e72117f875d6c08ffe52e2a43f01ad4 (diff)
downloadcoreclr-c10c1ff8e3237689212606c9aa5153beec8a1778.tar.gz
coreclr-c10c1ff8e3237689212606c9aa5153beec8a1778.tar.bz2
coreclr-c10c1ff8e3237689212606c9aa5153beec8a1778.zip
[Local GC] Move Software Write Watch's write barrier updates to GCToEEInterface::StompWriteBarrier (#8605)
* Move Software Write Watch's write barrier updates to use the new GCToEEInterface::StompWriteBarrier to stomp the EE's write barrier. * Address code review feedback, move SetCardsAfterBulkCopy to EE side of the interface
Diffstat (limited to 'src/classlibnative/bcltype/arraynative.cpp')
-rw-r--r--src/classlibnative/bcltype/arraynative.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classlibnative/bcltype/arraynative.cpp b/src/classlibnative/bcltype/arraynative.cpp
index 58fa4dd3e6..9baba44c1e 100644
--- a/src/classlibnative/bcltype/arraynative.cpp
+++ b/src/classlibnative/bcltype/arraynative.cpp
@@ -961,7 +961,7 @@ void memmoveGCRefs(void *dest, const void *src, size_t len)
}
}
- GCHeapUtilities::GetGCHeap()->SetCardsAfterBulkCopy((Object**)dest, len);
+ SetCardsAfterBulkCopy((Object**)dest, len);
}
void ArrayNative::ArrayCopyNoTypeCheck(BASEARRAYREF pSrc, unsigned int srcIndex, BASEARRAYREF pDest, unsigned int destIndex, unsigned int length)