mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Rename AttributeSets to AttributeGroups so that it's more meaningful.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174911 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -431,10 +431,10 @@ void ValueEnumerator::EnumerateAttributes(const AttributeSet &PAL) {
|
||||
// Do lookups for all attribute groups.
|
||||
for (unsigned i = 0, e = PAL.getNumSlots(); i != e; ++i) {
|
||||
AttributeSet AS = PAL.getSlotAttributes(i);
|
||||
unsigned &Entry = AttributeSetMap[AS];
|
||||
unsigned &Entry = AttributeGroupMap[AS];
|
||||
if (Entry == 0) {
|
||||
AttributeSets.push_back(AS);
|
||||
Entry = AttributeSets.size();
|
||||
AttributeGroups.push_back(AS);
|
||||
Entry = AttributeGroups.size();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user