Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index 6a4320f2b1d459245ded72e59cc27ce9ab1322ae..d854c12a04d934423e732bfcefece4b93050e64a 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -2417,23 +2417,27 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor { |
void HandleLiteralCompareNil(CompareOperation* expr, |
Expression* sub_expr, |
NilValue nil); |
- HControlInstruction* BuildCompareInstruction(Token::Value op, |
- HValue* left, |
- HValue* right, |
- Type* left_type, |
- Type* right_type, |
- Type* combined_type, |
- int left_position, |
- int right_position, |
- BailoutId bailout_id); |
- |
- HInstruction* BuildStringCharCodeAt(HValue* string, |
- HValue* index); |
enum PushBeforeSimulateBehavior { |
PUSH_BEFORE_SIMULATE, |
NO_PUSH_BEFORE_SIMULATE |
}; |
+ |
+ HControlInstruction* BuildCompareInstruction( |
+ Token::Value op, |
+ HValue* left, |
+ HValue* right, |
+ Type* left_type, |
+ Type* right_type, |
+ Type* combined_type, |
+ int left_position, |
+ int right_position, |
+ PushBeforeSimulateBehavior push_sim_result, |
+ BailoutId bailout_id); |
+ |
+ HInstruction* BuildStringCharCodeAt(HValue* string, |
+ HValue* index); |
+ |
HValue* BuildBinaryOperation( |
BinaryOperation* expr, |
HValue* left, |