Fix TableGen code generation for ReadNone attribute.

Patch by Pete Abred!

llvm-svn: 243689
This commit is contained in:
Eric Christopher 2015-07-30 21:16:34 +00:00
parent be203a58fb
commit 2b6a10e63b

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