diff options
| author | 2018-01-05 17:36:25 +0000 | |
|---|---|---|
| committer | 2018-01-05 17:36:25 +0000 | |
| commit | 70a58af9c733bc14c4573dddd282b3c02ccf4985 (patch) | |
| tree | 46fe53c06014ec4809f5f4c1dbd1e1c941349619 /runtime/class_table.cc | |
| parent | 9382c0d53f91f3788a5254495917898d8b61fe00 (diff) | |
| parent | 2c64a837e62c2839521c89060b5bb0dcb237ddda (diff) | |
Merge "Change ClassStatus to fit into 4 bits."
Diffstat (limited to 'runtime/class_table.cc')
| -rw-r--r-- | runtime/class_table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/class_table.cc b/runtime/class_table.cc index c45bbe5334..e313ec5dd7 100644 --- a/runtime/class_table.cc +++ b/runtime/class_table.cc @@ -79,7 +79,7 @@ mirror::Class* ClassTable::UpdateClass(const char* descriptor, mirror::Class* kl mirror::Class* const existing = existing_it->Read(); CHECK_NE(existing, klass) << descriptor; CHECK(!existing->IsResolved()) << descriptor; - CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusResolving) << descriptor; + CHECK_EQ(klass->GetStatus(), ClassStatus::kResolving) << descriptor; CHECK(!klass->IsTemp()) << descriptor; VerifyObject(klass); // Update the element in the hash set with the new class. This is safe to do since the descriptor |