diff options
author | Eric Christopher <echristo@gmail.com> | 2015-07-30 21:16:34 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-07-30 21:16:34 +0000 |
commit | f4745ecbb449433f9b91faf17f334f64a3d6b0f1 (patch) | |
tree | c14ce935b7dafb98c43ec8887b0c9c6a50deee4b /utils | |
parent | 3b00227629917d5ca3850ac762fba6e4debb07d9 (diff) |
Fix TableGen code generation for ReadNone attribute.
Patch by Pete Abred!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243689 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/IntrinsicEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/IntrinsicEmitter.cpp b/utils/TableGen/IntrinsicEmitter.cpp index 18a8db6b534..cebe5bbc313 100644 --- 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 << "Attributes::ReadNone"; + OS << "Attribute::ReadNone"; addComma = true; break; } |