| Index: src/arm/frames-arm.h
|
| ===================================================================
|
| --- src/arm/frames-arm.h (revision 8931)
|
| +++ src/arm/frames-arm.h (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
| +// Copyright 2011 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -93,10 +93,11 @@
|
|
|
| class StackHandlerConstants : public AllStatic {
|
| public:
|
| - static const int kNextOffset = 0 * kPointerSize;
|
| - static const int kStateOffset = 1 * kPointerSize;
|
| - static const int kFPOffset = 2 * kPointerSize;
|
| - static const int kPCOffset = 3 * kPointerSize;
|
| + static const int kNextOffset = 0 * kPointerSize;
|
| + static const int kStateOffset = 1 * kPointerSize;
|
| + static const int kContextOffset = 2 * kPointerSize;
|
| + static const int kFPOffset = 3 * kPointerSize;
|
| + static const int kPCOffset = 4 * kPointerSize;
|
|
|
| static const int kSize = kPCOffset + kPointerSize;
|
| };
|
|
|