Commit bafc8e67 authored by Shu-yu Guo's avatar Shu-yu Guo Committed by V8 LUCI CQ

Undo accidentally committed change for debugging

Change-Id: Ie62c4d46b767f1dcf70e8e75a30b5fc4d90ac295
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3424897
Auto-Submit: Shu-yu Guo <syg@chromium.org>
Reviewed-by: 's avatarAdam Klein <adamk@chromium.org>
Commit-Queue: Adam Klein <adamk@chromium.org>
Cr-Commit-Position: refs/heads/main@{#78851}
parent d971c6cc
......@@ -14,8 +14,7 @@ namespace {
DISABLE_CFI_PERF
void IterateObjectCache(Isolate* isolate, std::vector<Object>* cache,
Root root_id, RootVisitor* visitor) {
size_t i;
for (i = 0;; ++i) {
for (size_t i = 0;; ++i) {
// Extend the array ready to get a value when deserializing.
if (cache->size() <= i) cache->push_back(Smi::zero());
// During deserialization, the visitor populates the object cache and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment