Chromium Code Reviews| Index: src/code-stubs.h |
| =================================================================== |
| --- src/code-stubs.h (revision 8745) |
| +++ src/code-stubs.h (working copy) |
| @@ -934,6 +934,8 @@ |
| }; |
| static Types no_types() { return Types(); } |
| + static const byte kAllTypes = 0xff; |
| + static Types all_types() { return Types(kAllTypes); } |
|
Sven Panne
2011/07/27 14:46:33
Removing kAllTypes and directly using
(1 << NUMB
Vitaly Repeshko
2011/07/27 14:49:38
I agree.
fschneider
2011/07/27 14:56:19
Done.
|
| explicit ToBooleanStub(Register tos, Types types = Types()) |
| : tos_(tos), types_(types) { } |