projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b00227
)
Fix TableGen code generation for ReadNone attribute.
author
Eric Christopher
<echristo@gmail.com>
Thu, 30 Jul 2015 21:16:34 +0000
(21:16 +0000)
committer
Eric Christopher
<echristo@gmail.com>
Thu, 30 Jul 2015 21:16:34 +0000
(21:16 +0000)
Patch by Pete Abred!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243689
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/TableGen/IntrinsicEmitter.cpp
patch
|
blob
|
history
diff --git
a/utils/TableGen/IntrinsicEmitter.cpp
b/utils/TableGen/IntrinsicEmitter.cpp
index 18a8db6b5348150031fd9139107c748af716c5c1..cebe5bbc31388fa4471eb2ba5fe26d820f1862cd 100644
(file)
--- a/
utils/TableGen/IntrinsicEmitter.cpp
+++ b/
utils/TableGen/IntrinsicEmitter.cpp
@@
-636,7
+636,7
@@
EmitAttributes(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) {
case CodeGenIntrinsic::ReadNone:
if (addComma)
OS << ",";
- OS << "Attribute
s
::ReadNone";
+ OS << "Attribute::ReadNone";
addComma = true;
break;
}