Nomenclature improvements.
Change-Id: I809ab04b6ee74bb8141791e1f3f5d7e3f4efb61c
diff --git a/src/dex_verifier.cc b/src/dex_verifier.cc
index 6fd7c20..aedd599 100644
--- a/src/dex_verifier.cc
+++ b/src/dex_verifier.cc
@@ -1489,8 +1489,8 @@
Fail(VERIFY_ERROR_GENERIC) << "branch offset of zero not allowed at" << (void*) cur_offset;
return false;
}
- // Check for 32-bit overflow. This isn't strictly necessary if we can depend on the VM to have
- // identical "wrap-around" behavior, but it's unwise to depend on that.
+ // Check for 32-bit overflow. This isn't strictly necessary if we can depend on the runtime
+ // to have identical "wrap-around" behavior, but it's unwise to depend on that.
if (((int64_t) cur_offset + (int64_t) offset) != (int64_t) (cur_offset + offset)) {
Fail(VERIFY_ERROR_GENERIC) << "branch target overflow " << (void*) cur_offset << " +" << offset;
return false;