Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(574)

Unified Diff: runtime/vm/disassembler.h

Issue 2997993002: Revert "Reapply "Eliminate dependencies on assemblers and code stubs in precompiled runtime."" (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/deopt_instructions.cc ('k') | runtime/vm/disassembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/disassembler.h
diff --git a/runtime/vm/disassembler.h b/runtime/vm/disassembler.h
index 2d502de55fe53c1dcf546524c53b839a5fedb6dd..364f4f5765043fd0584beac2db03b1f9f1a60bf2 100644
--- a/runtime/vm/disassembler.h
+++ b/runtime/vm/disassembler.h
@@ -99,7 +99,7 @@ class Disassembler : public AllStatic {
}
static void Disassemble(uword start, uword end, const Code& code) {
-#if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME)
+#ifndef PRODUCT
DisassembleToStdout stdout_formatter;
LogBlock lb;
Disassemble(start, end, &stdout_formatter, code);
@@ -109,7 +109,7 @@ class Disassembler : public AllStatic {
}
static void Disassemble(uword start, uword end) {
-#if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME)
+#ifndef PRODUCT
DisassembleToStdout stdout_formatter;
LogBlock lb;
Disassemble(start, end, &stdout_formatter);
« no previous file with comments | « runtime/vm/deopt_instructions.cc ('k') | runtime/vm/disassembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698