Use the AttributeSet instead of AttributeWithIndex object.
authorBill Wendling <isanbard@gmail.com>
Sun, 27 Jan 2013 00:36:48 +0000 (00:36 +0000)
committerBill Wendling <isanbard@gmail.com>
Sun, 27 Jan 2013 00:36:48 +0000 (00:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173598 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bitcode/Reader/BitcodeReader.cpp

index 4190161b62e8eb464990dbb162b1076e4b3e4e14..2e1a5125fe96317394098de7bbd13c8d41d5181a 100644 (file)
@@ -437,7 +437,7 @@ bool BitcodeReader::ParseAttributeBlock() {
 
   SmallVector<uint64_t, 64> Record;
 
-  SmallVector<AttributeWithIndex, 8> Attrs;
+  SmallVector<AttributeSet, 8> Attrs;
 
   // Read all the records.
   while (1) {
@@ -472,8 +472,7 @@ bool BitcodeReader::ParseAttributeBlock() {
       for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
         AttrBuilder B(Record[i+1]);
         if (B.hasAttributes())
-          Attrs.push_back(AttributeWithIndex::get(Record[i],
-                                                  Attribute::get(Context, B)));
+          Attrs.push_back(AttributeSet::get(Context, Record[i], B));
       }
 
       MAttributes.push_back(AttributeSet::get(Context, Attrs));