Chromium Code Reviews| Index: src/code-stubs.h |
| =================================================================== |
| --- src/code-stubs.h (revision 7252) |
| +++ src/code-stubs.h (working copy) |
| @@ -682,9 +682,10 @@ |
| } |
| int GetArgumentsObjectSize() const { |
| - return (type_ == NEW_STRICT) |
| - ? Heap::kArgumentsObjectSizeStrict |
| - : Heap::kArgumentsObjectSize; |
| + if (type_ == NEW_STRICT) |
| + return Heap::kArgumentsObjectSizeStrict; |
| + else |
| + return Heap::kArgumentsObjectSize; |
| } |
| const char* GetName() { return "ArgumentsAccessStub"; } |