mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 00:20:25 +00:00
rename Mergable -> Mergeable and Writable -> Writeable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77138 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -315,14 +315,14 @@ void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
|
||||
case 1: Kind = SectionKind::get(SectionKind::ReadOnlyWithRelLocal); break;
|
||||
case 0:
|
||||
switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
|
||||
case 4: Kind = SectionKind::get(SectionKind::MergableConst4); break;
|
||||
case 8: Kind = SectionKind::get(SectionKind::MergableConst8); break;
|
||||
case 16: Kind = SectionKind::get(SectionKind::MergableConst16); break;
|
||||
default: Kind = SectionKind::get(SectionKind::MergableConst); break;
|
||||
case 4: Kind = SectionKind::get(SectionKind::MergeableConst4); break;
|
||||
case 8: Kind = SectionKind::get(SectionKind::MergeableConst8); break;
|
||||
case 16: Kind = SectionKind::get(SectionKind::MergeableConst16); break;
|
||||
default: Kind = SectionKind::get(SectionKind::MergeableConst); break;
|
||||
}
|
||||
}
|
||||
|
||||
const Section *S = TAI->getSectionForMergableConstant(Kind);
|
||||
const Section *S = TAI->getSectionForMergeableConstant(Kind);
|
||||
|
||||
// The number of sections are small, just do a linear search from the
|
||||
// last section to the first.
|
||||
|
||||
Reference in New Issue
Block a user