Chromium Code Reviews| Index: src/code-stubs.h |
| diff --git a/src/code-stubs.h b/src/code-stubs.h |
| index f19258bb46c42df3e2647bca0099fafb37f7f8c7..59da7e7f99d5484940828111399485b64a37091a 100644 |
| --- a/src/code-stubs.h |
| +++ b/src/code-stubs.h |
| @@ -1088,8 +1088,8 @@ class KeyedArrayCallStub: public HICStub { |
| } |
| class ContextualBits: public BitField<bool, 0, 1> {}; |
| - STATIC_ASSERT(IC::Contextual::kShift == ContextualBits::kShift); |
| - STATIC_ASSERT(IC::Contextual::kSize == ContextualBits::kSize); |
| + STATIC_ASSERT(LoadIC::Contextual::kShift == ContextualBits::kShift); |
|
mvstanton
2014/01/17 09:47:51
Toon, any insight into whats going on here? This a
Toon Verwaest
2014/01/17 10:05:56
This should be removed as well. This is a call IC
mvstanton
2014/01/17 10:44:33
Done. I kept asserts that indicate bit 0 is "busy,
|
| + STATIC_ASSERT(LoadIC::Contextual::kSize == ContextualBits::kSize); |
| class HoleyBits: public BitField<bool, 1, 1> {}; |
| STATIC_ASSERT(Code::kArgumentsBits <= kStubMinorKeyBits - 2); |
| class ArgcBits: public BitField<int, 2, Code::kArgumentsBits> {}; |