Add missing semicolon for GrowMemory trace event

Change-Id: I16cc93b44bddbd8356a4098f3857db4f9808e13c
Reviewed-on: https://chromium-review.googlesource.com/c/1336777
Reviewed-by: Adam Klein <adamk@chromium.org>
Commit-Queue: Deepti Gandluri <gdeepti@chromium.org>
Cr-Commit-Position: refs/heads/master@{#57621}
This commit is contained in:
Deepti Gandluri 2018-11-14 17:08:31 -08:00 committed by Commit Bot
parent 88e090d7da
commit c73c753efa

View File

@ -1042,7 +1042,7 @@ void WasmMemoryObject::RemoveInstance(Handle<WasmMemoryObject> memory,
int32_t WasmMemoryObject::Grow(Isolate* isolate,
Handle<WasmMemoryObject> memory_object,
uint32_t pages) {
TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.wasm"), "GrowMemory")
TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("v8.wasm"), "GrowMemory");
Handle<JSArrayBuffer> old_buffer(memory_object->array_buffer(), isolate);
if (!old_buffer->is_growable()) return -1;
size_t old_size = old_buffer->byte_length();