summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
author Hiroshi Yamauchi <yamauchi@google.com> 2015-03-19 18:49:47 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-03-19 18:49:47 +0000
commit00bb33c8151c05d7e1c89f6b999540c2036c5967 (patch)
tree1d1c7007dad6fa05cdce2aaa2e32000b6ce80164 /compiler
parent735dc87c92bee338d0638b3290c2b93a122429f2 (diff)
parent5b783e66b26b7b6ee13d344f4b77f6b7c47c4723 (diff)
Merge "Fix 003-omnibus-opcodes flaky failures with GSS GC."
Diffstat (limited to 'compiler')
-rw-r--r--compiler/driver/compiler_driver.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc
index 3d3d5cbc2a..ff4e0d850a 100644
--- a/compiler/driver/compiler_driver.cc
+++ b/compiler/driver/compiler_driver.cc
@@ -1901,7 +1901,7 @@ static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t c
if (klass->IsResolved()) {
if (klass->GetStatus() < mirror::Class::kStatusVerified) {
ObjectLock<mirror::Class> lock(soa.Self(), klass);
- klass->SetStatus(mirror::Class::kStatusVerified, soa.Self());
+ mirror::Class::SetStatus(klass, mirror::Class::kStatusVerified, soa.Self());
}
// Record the final class status if necessary.
ClassReference ref(manager->GetDexFile(), class_def_index);