Index: runtime/vm/benchmark_test.cc |
diff --git a/runtime/vm/benchmark_test.cc b/runtime/vm/benchmark_test.cc |
index 6e2761b660763d020c65ee977d1b66259230d06e..0db31587acbc2a7bae89d778bbe732e8385dcfde 100644 |
--- a/runtime/vm/benchmark_test.cc |
+++ b/runtime/vm/benchmark_test.cc |
@@ -501,8 +501,10 @@ BENCHMARK_SIZE(CoreSnapshotSize) { |
// Write snapshot with object content. |
FullSnapshotWriter writer(&vm_isolate_snapshot_buffer, |
&isolate_snapshot_buffer, |
+ NULL, /* instructions_snapshot_buffer */ |
&malloc_allocator, |
- false /* snapshot_code */); |
+ false, /* snapshot_code */ |
+ true /* vm_isolate_is_symbolic */); |
writer.WriteFullSnapshot(); |
const Snapshot* snapshot = Snapshot::SetupFromBuffer(isolate_snapshot_buffer); |
ASSERT(snapshot->kind() == Snapshot::kFull); |
@@ -536,8 +538,10 @@ BENCHMARK_SIZE(StandaloneSnapshotSize) { |
// Write snapshot with object content. |
FullSnapshotWriter writer(&vm_isolate_snapshot_buffer, |
&isolate_snapshot_buffer, |
+ NULL, /* instructions_snapshot_buffer */ |
&malloc_allocator, |
- false /* snapshot_code */); |
+ false, /* snapshot_code */ |
+ true /* vm_isolate_is_symbolic */); |
writer.WriteFullSnapshot(); |
const Snapshot* snapshot = Snapshot::SetupFromBuffer(isolate_snapshot_buffer); |
ASSERT(snapshot->kind() == Snapshot::kFull); |