| Index: src/deoptimizer.h
|
| diff --git a/src/deoptimizer.h b/src/deoptimizer.h
|
| index 591505fd459483570740ab1bd501d718942befc4..27665522bbdb0e922563a0211b34e3e811e6d977 100644
|
| --- a/src/deoptimizer.h
|
| +++ b/src/deoptimizer.h
|
| @@ -896,23 +896,19 @@ class FrameDescription {
|
| }
|
|
|
| static int frame_size_offset() {
|
| - return OFFSET_OF(FrameDescription, frame_size_);
|
| + return offsetof(FrameDescription, frame_size_);
|
| }
|
|
|
| - static int pc_offset() {
|
| - return OFFSET_OF(FrameDescription, pc_);
|
| - }
|
| + static int pc_offset() { return offsetof(FrameDescription, pc_); }
|
|
|
| - static int state_offset() {
|
| - return OFFSET_OF(FrameDescription, state_);
|
| - }
|
| + static int state_offset() { return offsetof(FrameDescription, state_); }
|
|
|
| static int continuation_offset() {
|
| - return OFFSET_OF(FrameDescription, continuation_);
|
| + return offsetof(FrameDescription, continuation_);
|
| }
|
|
|
| static int frame_content_offset() {
|
| - return OFFSET_OF(FrameDescription, frame_content_);
|
| + return offsetof(FrameDescription, frame_content_);
|
| }
|
|
|
| private:
|
|
|