| commit | 10f5d60d372e0af6d0da4b2b5326a1f0ff197234 | [log] [tgz] |
|---|---|---|
| author | Eric Christopher <echristo@gmail.com> | Thu Jul 30 21:16:34 2015 +0000 |
| committer | Eric Christopher <echristo@gmail.com> | Thu Jul 30 21:16:34 2015 +0000 |
| tree | bd200da183ff319c94ae21a5c9a25daeb8aea87d | |
| parent | 4e3b4ac241491f4a184da74d2d4312c38da8e591 [diff] |
Fix TableGen code generation for ReadNone attribute. Patch by Pete Abred! llvm-svn: 243689
diff --git a/llvm/utils/TableGen/IntrinsicEmitter.cpp b/llvm/utils/TableGen/IntrinsicEmitter.cpp index 18a8db6..cebe5bb 100644 --- a/llvm/utils/TableGen/IntrinsicEmitter.cpp +++ b/llvm/utils/TableGen/IntrinsicEmitter.cpp
@@ -636,7 +636,7 @@ case CodeGenIntrinsic::ReadNone: if (addComma) OS << ","; - OS << "Attributes::ReadNone"; + OS << "Attribute::ReadNone"; addComma = true; break; }