mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Use an AttrBuilder to generate the correct AttributeSet.
We no longer accept an encoded integer as representing all of the attributes. Convert this via the AttrBuilder class into an AttributeSet with the correct representation (an AttributeSetImpl that holds a list of Attribute objects). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173750 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -464,15 +464,10 @@ bool BitcodeReader::ParseAttributeBlock() {
|
||||
return Error("Invalid ENTRY record");
|
||||
|
||||
for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
|
||||
Attribute ReconstitutedAttr =
|
||||
AttributeFuncs::decodeLLVMAttributesForBitcode(Context, Record[i+1]);
|
||||
Record[i+1] = ReconstitutedAttr.Raw();
|
||||
}
|
||||
|
||||
for (unsigned i = 0, e = Record.size(); i != e; i += 2) {
|
||||
AttrBuilder B(Record[i+1]);
|
||||
if (B.hasAttributes())
|
||||
Attrs.push_back(AttributeSet::get(Context, Record[i], B));
|
||||
AttrBuilder B;
|
||||
AttributeFuncs::decodeLLVMAttributesForBitcode(Context, B,
|
||||
Record[i+1]);
|
||||
Attrs.push_back(AttributeSet::get(Context, Record[i], B));
|
||||
}
|
||||
|
||||
MAttributes.push_back(AttributeSet::get(Context, Attrs));
|
||||
|
Reference in New Issue
Block a user