| Index: src/hydrogen-instructions.h
|
| diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
|
| index a623775f2f8aa68dddb9fbd3c93703321bfde43f..b37a046af056368178b3ada2b3404d9879b3beb8 100644
|
| --- a/src/hydrogen-instructions.h
|
| +++ b/src/hydrogen-instructions.h
|
| @@ -1990,14 +1990,13 @@ class HConstant: public HTemplateInstruction<0> {
|
|
|
| private:
|
| Handle<Object> handle_;
|
| - HType constant_type_;
|
|
|
| // The following two values represent the int32 and the double value of the
|
| // given constant if there is a lossless conversion between the constant
|
| // and the specific representation.
|
| - bool has_int32_value_;
|
| + bool has_int32_value_ : 1;
|
| + bool has_double_value_ : 1;
|
| int32_t int32_value_;
|
| - bool has_double_value_;
|
| double double_value_;
|
| };
|
|
|
|
|