mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
[mips] .reginfo is 8 byte aligned on N32.
Differential Revision: http://reviews.llvm.org/D4540 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213246 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3da6527068
commit
8f69856b52
@ -366,7 +366,8 @@ void MipsTargetELFStreamer::finish() {
|
||||
const MCSectionELF *Sec =
|
||||
Context.getELFSection(".reginfo", ELF::SHT_MIPS_REGINFO, ELF::SHF_ALLOC,
|
||||
SectionKind::getMetadata(), 24, "");
|
||||
MCA.getOrCreateSectionData(*Sec).setAlignment(4);
|
||||
MCA.getOrCreateSectionData(*Sec)
|
||||
.setAlignment(Features & Mips::FeatureN32 ? 8 : 4);
|
||||
OS.SwitchSection(Sec);
|
||||
|
||||
OS.EmitIntValue(0, 4); // ri_gprmask
|
||||
|
@ -27,6 +27,6 @@
|
||||
# CHECK_32-LABEL: Name: .reginfo
|
||||
# CHECK_32-NEXT: Type: SHT_MIPS_REGINFO
|
||||
# CHECK_32-NEXT: Flags [ (0x2)
|
||||
# CHECK_32: AddressAlignment: 4
|
||||
# CHECK_32: AddressAlignment: 8
|
||||
# CHECK_32: EntrySize: 24
|
||||
# CHECK_32-LABEL: }
|
||||
|
Loading…
Reference in New Issue
Block a user