Chromium Code Reviews| Index: runtime/vm/benchmark_test.h |
| diff --git a/runtime/vm/benchmark_test.h b/runtime/vm/benchmark_test.h |
| index b51c64c0432bf7632da0fda2fa0193d17a3dbf41..c30432649b26ea8d54dd7b075527f93225f98701 100644 |
| --- a/runtime/vm/benchmark_test.h |
| +++ b/runtime/vm/benchmark_test.h |
| @@ -26,7 +26,7 @@ extern const uint8_t* vm_isolate_snapshot_buffer; |
| // isolate_snapshot_buffer points to a snapshot for an isolate if we link in a |
| // snapshot otherwise it is initialized to NULL. |
| -extern const uint8_t* isolate_snapshot_buffer; |
| +extern const uint8_t* core_isolate_snapshot_buffer; |
|
siva
2017/01/13 18:11:14
ditto.
|
| } |
| // The BENCHMARK macros are used for benchmarking a specific functionality |
| @@ -110,7 +110,7 @@ class Benchmark { |
| class BenchmarkIsolateScope { |
| public: |
| explicit BenchmarkIsolateScope(Benchmark* benchmark) : benchmark_(benchmark) { |
| - benchmark_->CreateIsolate(bin::isolate_snapshot_buffer); |
| + benchmark_->CreateIsolate(bin::core_isolate_snapshot_buffer); |
| Dart_EnterScope(); // Create a Dart API scope for unit benchmarks. |
| } |
| ~BenchmarkIsolateScope() { |