Add initial support for the convergent attribute.

llvm-svn: 238264
This commit is contained in:
Owen Anderson
2015-05-26 23:48:40 +00:00
parent 3abb86da62
commit 85fa7d5037
16 changed files with 61 additions and 5 deletions

View File

@@ -1095,6 +1095,8 @@ static Attribute::AttrKind GetAttrFromCode(uint64_t Code) {
return Attribute::InAlloca;
case bitc::ATTR_KIND_COLD:
return Attribute::Cold;
case bitc::ATTR_KIND_CONVERGENT:
return Attribute::Convergent;
case bitc::ATTR_KIND_INLINE_HINT:
return Attribute::InlineHint;
case bitc::ATTR_KIND_IN_REG: