| Index: src/ia32/frames-ia32.h
|
| diff --git a/src/ia32/frames-ia32.h b/src/ia32/frames-ia32.h
|
| index bc65ddfaddbd6365ba544a507a15c1d9f38c507a..2f1b2a96d3f4e377039223c9f56e0af42c3f84d5 100644
|
| --- a/src/ia32/frames-ia32.h
|
| +++ b/src/ia32/frames-ia32.h
|
| @@ -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:
|
| @@ -58,10 +58,11 @@ static const int kNumSafepointRegisters = 8;
|
|
|
| class StackHandlerConstants : public AllStatic {
|
| public:
|
| - static const int kNextOffset = 0 * kPointerSize;
|
| - static const int kFPOffset = 1 * kPointerSize;
|
| - static const int kStateOffset = 2 * kPointerSize;
|
| - static const int kPCOffset = 3 * kPointerSize;
|
| + static const int kNextOffset = 0 * kPointerSize;
|
| + static const int kContextOffset = 1 * kPointerSize;
|
| + static const int kFPOffset = 2 * kPointerSize;
|
| + static const int kStateOffset = 3 * kPointerSize;
|
| + static const int kPCOffset = 4 * kPointerSize;
|
|
|
| static const int kSize = kPCOffset + kPointerSize;
|
| };
|
|
|