Index: src/compiler/control-builders.h |
diff --git a/src/compiler/control-builders.h b/src/compiler/control-builders.h |
index eb674bf018ac6e87d77f6c72aec31e524802fe3a..9fc959250f2e996d2075cad37e6d374e89a5e091 100644 |
--- a/src/compiler/control-builders.h |
+++ b/src/compiler/control-builders.h |
@@ -14,7 +14,6 @@ namespace v8 { |
namespace internal { |
namespace compiler { |
- |
// Base class for all control builders. Also provides a common interface for |
// control builders to handle 'break' and 'continue' statements when they are |
// used to model breakable statements. |
@@ -49,7 +48,7 @@ class IfBuilder : public ControlBuilder { |
else_environment_(NULL) {} |
// Primitive control commands. |
- void If(Node* condition); |
+ void If(Node* condition, BranchHint hint = BranchHint::kNone); |
void Then(); |
void Else(); |
void End(); |