Index: src/x64/lithium-codegen-x64.cc |
diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc |
index 46456a1ef690e50118c4476ffabe5bcc3ab72ccd..15003a96456cdb0f0995d5c7660392f0c3d83dd0 100644 |
--- a/src/x64/lithium-codegen-x64.cc |
+++ b/src/x64/lithium-codegen-x64.cc |
@@ -308,11 +308,8 @@ bool LCodeGen::GenerateJumpTable() { |
Address entry = table_entry->address; |
Deoptimizer::BailoutType type = table_entry->bailout_type; |
int id = Deoptimizer::GetDeoptimizationId(isolate(), entry, type); |
- if (id == Deoptimizer::kNotDeoptimizationEntry) { |
- Comment(";;; jump table entry %d.", i); |
- } else { |
- Comment(";;; jump table entry %d: deoptimization bailout %d.", i, id); |
- } |
+ DCHECK_NE(Deoptimizer::kNotDeoptimizationEntry, id); |
+ Comment(";;; jump table entry %d: deoptimization bailout %d.", i, id); |
DeoptComment(table_entry->mnemonic, table_entry->reason); |
if (table_entry->needs_frame) { |
DCHECK(!info()->saves_caller_doubles()); |