[Mlir-commits] [mlir] 8652fc8 - [mlir][NFC] Fully qualify a default C++ string in Pattern.cpp

Markus Böck llvmlistbot at llvm.org
Thu Feb 3 02:50:41 PST 2022


Author: Markus Böck
Date: 2022-02-03T11:50:37+01:00
New Revision: 8652fc8453b071cd9bc1e64446fb81193cd7d428

URL: https://github.com/llvm/llvm-project/commit/8652fc8453b071cd9bc1e64446fb81193cd7d428
DIFF: https://github.com/llvm/llvm-project/commit/8652fc8453b071cd9bc1e64446fb81193cd7d428.diff

LOG: [mlir][NFC] Fully qualify a default C++ string in Pattern.cpp

Added: 
    

Modified: 
    mlir/lib/TableGen/Pattern.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/TableGen/Pattern.cpp b/mlir/lib/TableGen/Pattern.cpp
index d8c5e08bfcef1..e7df9af87f17c 100644
--- a/mlir/lib/TableGen/Pattern.cpp
+++ b/mlir/lib/TableGen/Pattern.cpp
@@ -249,7 +249,7 @@ std::string SymbolInfoMap::SymbolInfo::getVarTypeStr(StringRef name) const {
           ->attr.getStorageType()
           .str();
     // TODO(suderman): Use a more exact type when available.
-    return "Attribute";
+    return "::mlir::Attribute";
   }
   case Kind::Operand: {
     // Use operand range for captured operands (to support potential variadic


        


More information about the Mlir-commits mailing list