Add a new attribute: norecurse
[oota-llvm.git] / lib / Bitcode / Reader / BitcodeReader.cpp
index 7c1b208c62610b92980527c87fe3594de52ae995..bc846192fcfd02674000237aacfaf7020cc977d9 100644 (file)
@@ -1305,6 +1305,8 @@ static Attribute::AttrKind getAttrFromCode(uint64_t Code) {
     return Attribute::NoImplicitFloat;
   case bitc::ATTR_KIND_NO_INLINE:
     return Attribute::NoInline;
+  case bitc::ATTR_KIND_NO_RECURSE:
+    return Attribute::NoRecurse;
   case bitc::ATTR_KIND_NON_LAZY_BIND:
     return Attribute::NonLazyBind;
   case bitc::ATTR_KIND_NON_NULL: