diff options
| author | 2016-02-03 21:22:49 +0000 | |
|---|---|---|
| committer | 2016-02-03 21:22:49 +0000 | |
| commit | 287fd33a9f03f16ae52a3b290bcabb49bc65d97b (patch) | |
| tree | 78d5dd0b7e7ca5085c066909745ba9ab100a75f7 | |
| parent | e9681121609e08835dd461a80eea649b94dac563 (diff) | |
| parent | a57ee9dac63148848a5e11461bafcfd33689ea10 (diff) | |
Merge "Avoid read barrier for UpdateEntrypoints"
| -rw-r--r-- | runtime/gc/space/image_space.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/space/image_space.cc b/runtime/gc/space/image_space.cc index d185e6331a..92693395f1 100644 --- a/runtime/gc/space/image_space.cc +++ b/runtime/gc/space/image_space.cc @@ -925,7 +925,7 @@ class FixupArtMethodVisitor : public FixupVisitor, public ArtMethodVisitor { if (fixup_heap_objects_) { method->UpdateObjectsForImageRelocation(ForwardObjectAdapter(this)); } - method->UpdateEntrypoints(ForwardCodeAdapter(this)); + method->UpdateEntrypoints<kWithoutReadBarrier>(ForwardCodeAdapter(this)); } private: |