aboutsummaryrefslogtreecommitdiff
path: root/include/SerializationPasses.td
diff options
context:
space:
mode:
Diffstat (limited to 'include/SerializationPasses.td')
-rw-r--r--include/SerializationPasses.td8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/SerializationPasses.td b/include/SerializationPasses.td
index 6df996e..ec272e4 100644
--- a/include/SerializationPasses.td
+++ b/include/SerializationPasses.td
@@ -1,7 +1,7 @@
// Copyright (c) 2020-2021, ARM Limited.
//
-// Licensed under the Apache License, Version 2.0 with LLVM Exceptions
-// (the "License"); you may not use this file except in compliance with
+// Licensed under the Apache License, Version 2.0 with LLVM Exceptions
+// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// https://llvm.org/LICENSE.txt
@@ -19,3 +19,7 @@ def TosaSerializationPass : Pass<"tosa-serialize", "FuncOp"> {
let constructor = "createTosaSerializePass()";
}
+def TosaSerializationJSONPass : Pass<"tosa-serialize-json", "FuncOp"> {
+ let summary = "Generate TOSA flatbuffer JSON form";
+ let constructor = "createTosaSerializeJSONPass()";
+}