Index: runtime/vm/stub_code_ia32.cc |
diff --git a/runtime/vm/stub_code_ia32.cc b/runtime/vm/stub_code_ia32.cc |
index 240d1fd19025736ee9315d29a9c07ba5141e1557..3ca730d2226377dfaa1f79de7d31084318dec569 100644 |
--- a/runtime/vm/stub_code_ia32.cc |
+++ b/runtime/vm/stub_code_ia32.cc |
@@ -3,7 +3,7 @@ |
// BSD-style license that can be found in the LICENSE file. |
#include "vm/globals.h" |
-#if defined(TARGET_ARCH_IA32) |
+#if defined(TARGET_ARCH_IA32) && !defined(DART_PRECOMPILED_RUNTIME) |
#include "vm/assembler.h" |
#include "vm/compiler.h" |
@@ -94,13 +94,6 @@ void StubCode::GenerateCallToRuntimeStub(Assembler* assembler) { |
} |
-// Print the stop message. |
-DEFINE_LEAF_RUNTIME_ENTRY(void, PrintStopMessage, 1, const char* message) { |
- OS::Print("Stop message: %s\n", message); |
-} |
-END_LEAF_RUNTIME_ENTRY |
- |
- |
// Input parameters: |
// ESP : points to return address. |
// EAX : stop message (const char*). |
@@ -2142,4 +2135,4 @@ void StubCode::GenerateAsynchronousGapMarkerStub(Assembler* assembler) { |
} // namespace dart |
-#endif // defined TARGET_ARCH_IA32 |
+#endif // defined(TARGET_ARCH_IA32) && !defined(DART_PRECOMPILED_RUNTIME) |