commit | 72b0cbe84081a68595baf9dd515a6733b6867018 | [log] [tgz] |
---|---|---|
author | James Molloy <jmolloy@google.com> | Wed Aug 01 12:55:27 2018 -0700 |
committer | jpienaar <jpienaar@google.com> | Fri Mar 29 12:52:35 2019 -0700 |
tree | b6c93446636c92e51610d2c87d3c90e4e27d5596 | |
parent | f8bbadb1fd70b78eabdbc1c1be53ad0615a44125 [diff] [blame] |
[mlir] Add a string type PiperOrigin-RevId: 206977161
diff --git a/lib/IR/AsmPrinter.cpp b/lib/IR/AsmPrinter.cpp index 9a94d66..f881872 100644 --- a/lib/IR/AsmPrinter.cpp +++ b/lib/IR/AsmPrinter.cpp
@@ -303,6 +303,9 @@ case Type::Kind::TFControl: os << "tf_control"; return; + case Type::Kind::TFString: + os << "tf_string"; + return; case Type::Kind::Integer: { auto *integer = cast<IntegerType>(type);