Index: src/compiler/operator-properties.cc |
diff --git a/src/compiler/operator-properties.cc b/src/compiler/operator-properties.cc |
index 81299e34ffe830adce4ffa155cf126e0a962a01f..75849e4cfbbd8764c5ad0781590080d1ec36d253 100644 |
--- a/src/compiler/operator-properties.cc |
+++ b/src/compiler/operator-properties.cc |
@@ -100,7 +100,8 @@ bool OperatorProperties::IsBasicBlockBegin(const Operator* op) { |
return opcode == IrOpcode::kStart || opcode == IrOpcode::kEnd || |
opcode == IrOpcode::kDead || opcode == IrOpcode::kLoop || |
opcode == IrOpcode::kMerge || opcode == IrOpcode::kIfTrue || |
- opcode == IrOpcode::kIfFalse; |
+ opcode == IrOpcode::kIfFalse || opcode == IrOpcode::kIfException || |
+ opcode == IrOpcode::kIfSuccess; |
} |
} // namespace compiler |