Index: src/compiler/common-operator.cc |
diff --git a/src/compiler/common-operator.cc b/src/compiler/common-operator.cc |
index a8cfbb3049f3035e5ac6a15bba3abc9bef890481..c58fc7cd3d677e0e49e376a141873add27368cff 100644 |
--- a/src/compiler/common-operator.cc |
+++ b/src/compiler/common-operator.cc |
@@ -116,7 +116,9 @@ std::ostream& operator<<(std::ostream& os, ParameterInfo const& i) { |
#define CACHED_OP_LIST(V) \ |
- V(Dead, Operator::kFoldable, 0, 0, 0, 0, 0, 1) \ |
+ V(DeadValue, Operator::kPure, 0, 0, 0, 1, 0, 0) \ |
+ V(DeadEffect, Operator::kPure, 0, 0, 0, 0, 1, 0) \ |
+ V(DeadControl, Operator::kFoldable, 0, 0, 0, 0, 0, 1) \ |
V(IfTrue, Operator::kKontrol, 0, 0, 1, 0, 0, 1) \ |
V(IfFalse, Operator::kKontrol, 0, 0, 1, 0, 0, 1) \ |
V(IfSuccess, Operator::kKontrol, 0, 0, 1, 0, 0, 1) \ |