Index: runtime/vm/unit_test.h |
diff --git a/runtime/vm/unit_test.h b/runtime/vm/unit_test.h |
index 8622a4f2eadfa979e6ac1339a744b10a4eac4384..189515faefa52ab4c0b4f1e00b32ec720aa94232 100644 |
--- a/runtime/vm/unit_test.h |
+++ b/runtime/vm/unit_test.h |
@@ -380,7 +380,8 @@ class AssemblerTest { |
const Code& code() const { return code_; } |
- uword entry() const { return code_.EntryPoint(); } |
+ uword payload_start() const { return code_.PayloadStart(); } |
+ uword entry() const { return code_.UncheckedEntryPoint(); } |
// Invoke/InvokeWithCodeAndThread is used to call assembler test functions |
// using the ABI calling convention. |