Begin adding docs and IR-level support for the inalloca attribute
[oota-llvm.git] / lib / Bitcode / Reader / BitcodeReader.cpp
index ce3b7d163e51ad668baa3e3b61ed241c372e7dc4..37515eb6f285457d4f64f6c1515ca45ad672853f 100644 (file)
@@ -522,6 +522,8 @@ static Attribute::AttrKind GetAttrFromCode(uint64_t Code) {
     return Attribute::Builtin;
   case bitc::ATTR_KIND_BY_VAL:
     return Attribute::ByVal;
+  case bitc::ATTR_KIND_IN_ALLOCA:
+    return Attribute::InAlloca;
   case bitc::ATTR_KIND_COLD:
     return Attribute::Cold;
   case bitc::ATTR_KIND_INLINE_HINT: