| Index: src/compiler/operator.h
|
| diff --git a/src/compiler/operator.h b/src/compiler/operator.h
|
| index 75637a8de28a3fd8bac2376d7dd4b758c410dcc9..616b4cf7afe178433d9db9436d458b4e8189d8d9 100644
|
| --- a/src/compiler/operator.h
|
| +++ b/src/compiler/operator.h
|
| @@ -44,6 +44,7 @@ class Operator : public ZoneObject {
|
| // create new scheduling dependencies.
|
| kNoThrow = 1 << 6, // Can never generate an exception.
|
| kFoldable = kNoRead | kNoWrite,
|
| + kKontrol = kFoldable | kNoThrow,
|
| kEliminatable = kNoWrite | kNoThrow,
|
| kPure = kNoRead | kNoWrite | kNoThrow | kIdempotent
|
| };
|
|
|