Chromium Code Reviews| Index: src/globals.h |
| diff --git a/src/globals.h b/src/globals.h |
| index ea0aac998f89aa304b13990ca22a05f5e36d8a5f..9ea7d1b1dc71f32a2d3f7c7cea7c124b8d2f612d 100644 |
| --- a/src/globals.h |
| +++ b/src/globals.h |
| @@ -1156,6 +1156,12 @@ class BinaryOperationFeedback { |
| enum { kNone = 0x00, kSignedSmall = 0x01, kNumber = 0x3, kAny = 0x7 }; |
| }; |
| +// TODO(epertoso): consider unifying this with BinaryOperationFeedback. |
|
mythria
2016/08/30 08:09:29
Is there any reason we don't do it now?
|
| +class CompareOperationFeedback { |
| + public: |
| + enum { kNone = 0x00, kSignedSmall = 0x01, kNumber = 0x3, kAny = 0x7 }; |
| +}; |
| + |
| } // namespace internal |
| } // namespace v8 |