Index: runtime/vm/assembler.cc |
diff --git a/runtime/vm/assembler.cc b/runtime/vm/assembler.cc |
index 32b48128e69e7b39aa001793afc39d6bb3b16d16..234597e16289bb328c886dd138216c68745c2a07 100644 |
--- a/runtime/vm/assembler.cc |
+++ b/runtime/vm/assembler.cc |
@@ -14,7 +14,7 @@ |
namespace dart { |
static uword NewContents(intptr_t capacity) { |
- Zone* zone = Isolate::Current()->current_zone(); |
+ StackZone* zone = Isolate::Current()->current_zone(); |
uword result = zone->AllocUnsafe(capacity); |
#if defined(DEBUG) |
// Initialize the buffer with kBreakPointInstruction to force a break |