| Index: runtime/vm/stub_code.cc
|
| diff --git a/runtime/vm/stub_code.cc b/runtime/vm/stub_code.cc
|
| index 53a06cba0fe3cc251041c70feaeb81aa8bab4931..f0eaf6d48afe59b090de36d795114464574cab9c 100644
|
| --- a/runtime/vm/stub_code.cc
|
| +++ b/runtime/vm/stub_code.cc
|
| @@ -28,9 +28,10 @@ VM_STUB_CODE_LIST(STUB_CODE_DECLARE);
|
|
|
| StubEntry::StubEntry(const Code& code)
|
| : code_(code.raw()),
|
| - entry_point_(code.EntryPoint()),
|
| + entry_point_(code.UncheckedEntryPoint()),
|
| + checked_entry_point_(code.CheckedEntryPoint()),
|
| size_(code.Size()),
|
| - label_(code.EntryPoint()) {
|
| + label_(code.UncheckedEntryPoint()) {
|
| }
|
|
|
|
|
|
|