summaryrefslogtreecommitdiff
path: root/runtime/gc/verification.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/gc/verification.cc')
-rw-r--r--runtime/gc/verification.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/verification.cc b/runtime/gc/verification.cc
index d99b37762f..fb5db1147f 100644
--- a/runtime/gc/verification.cc
+++ b/runtime/gc/verification.cc
@@ -140,7 +140,7 @@ bool Verification::IsValidClass(const void* addr) const {
if (!IsValidHeapObjectAddress(k1)) {
return false;
}
- // k should be class class, take the class again to verify.
+ // `k1` should be class class, take the class again to verify.
// Note that this check may not be valid for the no image space since the class class might move
// around from moving GC.
mirror::Class* k2 = k1->GetClass<kVerifyNone, kWithoutReadBarrier>();