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
This commit is contained in:
Eric Christopher 2015-07-30 21:16:34 +00:00
parent 3b00227629
commit f4745ecbb4

View File

@ -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;
}