Index: src/hydrogen-instructions.h |
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h |
index 64a40b9a478685c90e9e5e85acf3bc16132e5d8b..bf7f35c5ab98376df3fa3783a3e3d06250d2d657 100644 |
--- a/src/hydrogen-instructions.h |
+++ b/src/hydrogen-instructions.h |
@@ -3311,9 +3311,9 @@ class HStoreGlobalGeneric: public HTemplateInstruction<3> { |
HValue* global_object, |
Handle<Object> name, |
HValue* value, |
- bool strict_mode) |
+ StrictModeFlag strict_mode_flag) |
: name_(name), |
- strict_mode_(strict_mode) { |
+ strict_mode_flag_(strict_mode_flag) { |
SetOperandAt(0, context); |
SetOperandAt(1, global_object); |
SetOperandAt(2, value); |
@@ -3325,7 +3325,7 @@ class HStoreGlobalGeneric: public HTemplateInstruction<3> { |
HValue* global_object() { return OperandAt(1); } |
Handle<Object> name() const { return name_; } |
HValue* value() { return OperandAt(2); } |
- bool strict_mode() { return strict_mode_; } |
+ StrictModeFlag strict_mode_flag() { return strict_mode_flag_; } |
virtual void PrintDataTo(StringStream* stream); |
@@ -3337,7 +3337,7 @@ class HStoreGlobalGeneric: public HTemplateInstruction<3> { |
private: |
Handle<Object> name_; |
- bool strict_mode_; |
+ StrictModeFlag strict_mode_flag_; |
}; |
@@ -3867,8 +3867,8 @@ class HStoreKeyedGeneric: public HTemplateInstruction<4> { |
HValue* object, |
HValue* key, |
HValue* value, |
- bool strict_mode) |
- : strict_mode_(strict_mode) { |
+ StrictModeFlag strict_mode_flag) |
+ : strict_mode_flag_(strict_mode_flag) { |
SetOperandAt(0, object); |
SetOperandAt(1, key); |
SetOperandAt(2, value); |
@@ -3880,7 +3880,7 @@ class HStoreKeyedGeneric: public HTemplateInstruction<4> { |
HValue* key() { return OperandAt(1); } |
HValue* value() { return OperandAt(2); } |
HValue* context() { return OperandAt(3); } |
- bool strict_mode() { return strict_mode_; } |
+ StrictModeFlag strict_mode_flag() { return strict_mode_flag_; } |
virtual Representation RequiredInputRepresentation(int index) { |
return Representation::Tagged(); |
@@ -3891,7 +3891,7 @@ class HStoreKeyedGeneric: public HTemplateInstruction<4> { |
DECLARE_CONCRETE_INSTRUCTION(StoreKeyedGeneric) |
private: |
- bool strict_mode_; |
+ StrictModeFlag strict_mode_flag_; |
}; |