| Index: src/compiler/verifier.h
|
| diff --git a/src/compiler/verifier.h b/src/compiler/verifier.h
|
| index 428558d42dad195e2d6919ccb88f9e6677967439..60849e02386c80ba4643fa5d4b6dc31734ab2872 100644
|
| --- a/src/compiler/verifier.h
|
| +++ b/src/compiler/verifier.h
|
| @@ -21,8 +21,10 @@ class Schedule;
|
| class Verifier {
|
| public:
|
| enum Typing { TYPED, UNTYPED };
|
| + enum CheckInputs { kValuesOnly, kAll };
|
|
|
| - static void Run(Graph* graph, Typing typing = TYPED);
|
| + static void Run(Graph* graph, Typing typing = TYPED,
|
| + CheckInputs check_inputs = kAll);
|
|
|
| #ifdef DEBUG
|
| // Verifies consistency of node inputs and uses:
|
|
|