Add codegen support to the optimizing compiler.
Change-Id: I9aae76908ff1d6e64fb71a6718fc1426b67a5c28
diff --git a/compiler/utils/assembler.h b/compiler/utils/assembler.h
index c9be4ed..5e7b2fa 100644
--- a/compiler/utils/assembler.h
+++ b/compiler/utils/assembler.h
@@ -324,6 +324,9 @@
buffer_.FinalizeInstructions(region);
}
+ // TODO: Implement with disassembler.
+ virtual void Comment(const char* format, ...) { }
+
// Emit code that will create an activation on the stack
virtual void BuildFrame(size_t frame_size, ManagedRegister method_reg,
const std::vector<ManagedRegister>& callee_save_regs,