| Index: src/compiler/code-assembler.cc
|
| diff --git a/src/compiler/code-assembler.cc b/src/compiler/code-assembler.cc
|
| index 4f5159af40213f0a2582dcb91df979a7309ba630..26407bd15bfec380a029fa94443d0572cf35adb4 100644
|
| --- a/src/compiler/code-assembler.cc
|
| +++ b/src/compiler/code-assembler.cc
|
| @@ -328,15 +328,6 @@ Node* CodeAssembler::Projection(int index, Node* value) {
|
| return raw_assembler_->Projection(index, value);
|
| }
|
|
|
| -void CodeAssembler::BranchIf(Node* condition, Label* if_true, Label* if_false) {
|
| - Label if_condition_is_true(this), if_condition_is_false(this);
|
| - Branch(condition, &if_condition_is_true, &if_condition_is_false);
|
| - Bind(&if_condition_is_true);
|
| - Goto(if_true);
|
| - Bind(&if_condition_is_false);
|
| - Goto(if_false);
|
| -}
|
| -
|
| void CodeAssembler::GotoIfException(Node* node, Label* if_exception,
|
| Variable* exception_var) {
|
| Label success(this), exception(this, Label::kDeferred);
|
|
|