| Index: src/trap-handler/trap-handler.h
|
| diff --git a/src/trap-handler/trap-handler.h b/src/trap-handler/trap-handler.h
|
| index 7c78b1f2320ad512b06ca0306aaa7f4ec7060e77..e6dd9bdca463c456af0b4fa75972e8facbc11cee 100644
|
| --- a/src/trap-handler/trap-handler.h
|
| +++ b/src/trap-handler/trap-handler.h
|
| @@ -11,12 +11,12 @@ namespace trap_handler {
|
|
|
| struct ProtectedInstructionData {
|
| // The offset of this instruction from the start of its code object.
|
| - int32_t instr_offset;
|
| + intptr_t instr_offset;
|
|
|
| // The offset of the landing pad from the start of its code object.
|
| //
|
| // TODO(eholk): Using a single landing pad and store parameters here.
|
| - int32_t landing_offset;
|
| + intptr_t landing_offset;
|
| };
|
|
|
| } // namespace trap_handler
|
|
|