We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e45d3 commit 8c219a0Copy full SHA for 8c219a0
runtime/vm/unwinding_records_win.cc
@@ -102,8 +102,8 @@ void UnwindingRecords::RegisterExecutablePage(Page* page) {
102
/*FunctionTable=*/record->runtime_function,
103
/*EntryCount=*/record->runtime_function_count,
104
/*MaximumEntryCount=*/record->runtime_function_count,
105
- /*RangeBase=*/reinterpret_cast<DWORD64>(page->memory_->start()),
106
- /*RangeEnd=*/reinterpret_cast<DWORD64>(page->memory_->end())) != 0) {
+ /*RangeBase=*/page->memory_->start(),
+ /*RangeEnd=*/page->memory_->end()) != 0) {
107
FATAL("Failed to add growable function table: %d\n", GetLastError());
108
}
109
0 commit comments