| Index: src/x64/lithium-x64.cc
|
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
|
| index ddaae82022cef07d66f42448d2bc2219633d583f..05b6dcca362b0582cdd3c004ba2bb5eba5faee3a 100644
|
| --- a/src/x64/lithium-x64.cc
|
| +++ b/src/x64/lithium-x64.cc
|
| @@ -999,6 +999,12 @@ LInstruction* LChunkBuilder::DoDebugBreak(HDebugBreak* instr) {
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoAndBranch(HAndBranch* instr) {
|
| + return new(zone()) LAndBranch(UseRegister(instr->value()),
|
| + instr->op());
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoBranch(HBranch* instr) {
|
| HValue* value = instr->value();
|
| if (value->EmitAtUses()) {
|
|
|