Index: src/ia32/frames-ia32.h |
diff --git a/src/ia32/frames-ia32.h b/src/ia32/frames-ia32.h |
index 32017ea54b8566ba9a8fe18b91757c68c92b04ed..45b847aec4d11f07de679011f96b8e69c54eaf15 100644 |
--- a/src/ia32/frames-ia32.h |
+++ b/src/ia32/frames-ia32.h |
@@ -34,24 +34,24 @@ namespace internal { |
// Register lists |
// Note that the bit values must match those used in actual instruction encoding |
-static const int kNumRegs = 8; |
+const int kNumRegs = 8; |
// Caller-saved registers |
-static const RegList kJSCallerSaved = |
+const RegList kJSCallerSaved = |
1 << 0 | // eax |
1 << 1 | // ecx |
1 << 2 | // edx |
1 << 3 | // ebx - used as a caller-saved register in JavaScript code |
1 << 7; // edi - callee function |
-static const int kNumJSCallerSaved = 5; |
+const int kNumJSCallerSaved = 5; |
typedef Object* JSCallerSavedBuffer[kNumJSCallerSaved]; |
// Number of registers for which space is reserved in safepoints. |
-static const int kNumSafepointRegisters = 8; |
+const int kNumSafepointRegisters = 8; |
// ---------------------------------------------------- |