Index: src/compiler/control-builders.cc |
diff --git a/src/compiler/control-builders.cc b/src/compiler/control-builders.cc |
index 3b7d05ba5551137859c0a7d463854c70b1713eaf..9a8db8b9a5d60a26301f25b70e9acdeef4ef8fa2 100644 |
--- a/src/compiler/control-builders.cc |
+++ b/src/compiler/control-builders.cc |
@@ -9,8 +9,8 @@ namespace internal { |
namespace compiler { |
-void IfBuilder::If(Node* condition) { |
- builder_->NewBranch(condition); |
+void IfBuilder::If(Node* condition, BranchHint hint) { |
+ builder_->NewBranch(condition, hint); |
else_environment_ = environment()->CopyForConditional(); |
} |