Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index ddaae82022cef07d66f42448d2bc2219633d583f..a5b8417e957ebfd0a80d98416b9c604eb14e685a 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1780,6 +1780,13 @@ LInstruction* LChunkBuilder::DoBoundsCheckBaseIndexInformation( |
} |
+LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { |
+ // The control instruction marking the end of a block that completed |
+ // abruptly (e.g., threw an exception). There is nothing specific to do. |
+ return NULL; |
+} |
+ |
+ |
LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { |
LOperand* value = UseFixed(instr->value(), rax); |
return MarkAsCall(new(zone()) LThrow(value), instr); |