Chromium Code Reviews| Index: src/codegen.h |
| =================================================================== |
| --- src/codegen.h (revision 4200) |
| +++ src/codegen.h (working copy) |
| @@ -361,6 +361,11 @@ |
| // stubs. |
| bool never_nan_nan_; |
| + // Encoding of the minor key CCCCCCCCCCCCCCNS. |
| + class StrictField: public BitField<bool, 0, 1> {}; |
| + class NeverNanNanField: public BitField<bool, 1, 1> {}; |
| + class ConditionField: public BitField<int, 2, 14> {}; |
| + |
| Major MajorKey() { return Compare; } |
| int MinorKey(); |