projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aac8fa8
)
NFC: Fix stray character in error message: 1 -> '
author
River Riddle
<riverriddle@google.com>
Sat, 14 Sep 2019 16:43:55 +0000
(09:43 -0700)
committer
A. Unique TensorFlower
<gardener@tensorflow.org>
Sat, 14 Sep 2019 16:44:23 +0000
(09:44 -0700)
PiperOrigin-RevId:
269091468
mlir/lib/IR/Module.cpp
patch
|
blob
|
history
diff --git
a/mlir/lib/IR/Module.cpp
b/mlir/lib/IR/Module.cpp
index
11791a0
..
feee321
100644
(file)
--- a/
mlir/lib/IR/Module.cpp
+++ b/
mlir/lib/IR/Module.cpp
@@
-84,7
+84,7
@@
LogicalResult ModuleOp::verify() {
for (auto attr : getOperation()->getAttrList().getAttrs()) {
if (!attr.first.strref().contains('.'))
return emitOpError(
- "can only contain dialect-specific attributes, found:
1
")
+ "can only contain dialect-specific attributes, found:
'
")
<< attr.first << "'";
}