mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 05:00:26 +00:00
On an ELF system, ".debug_str" is mergeable and contains null terminated strings
composed of one byte characters. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143044 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bc5f6ddfba
commit
5a86c5b457
@ -354,8 +354,9 @@ void MCObjectFileInfo::InitELFMCObjectFileInfo(Triple T) {
|
|||||||
Ctx->getELFSection(".debug_pubtypes", ELF::SHT_PROGBITS, 0,
|
Ctx->getELFSection(".debug_pubtypes", ELF::SHT_PROGBITS, 0,
|
||||||
SectionKind::getMetadata());
|
SectionKind::getMetadata());
|
||||||
DwarfStrSection =
|
DwarfStrSection =
|
||||||
Ctx->getELFSection(".debug_str", ELF::SHT_PROGBITS, 0,
|
Ctx->getELFSection(".debug_str", ELF::SHT_PROGBITS,
|
||||||
SectionKind::getMetadata());
|
ELF::SHF_MERGE | ELF::SHF_STRINGS,
|
||||||
|
SectionKind::getMergeable1ByteCString());
|
||||||
DwarfLocSection =
|
DwarfLocSection =
|
||||||
Ctx->getELFSection(".debug_loc", ELF::SHT_PROGBITS, 0,
|
Ctx->getELFSection(".debug_loc", ELF::SHT_PROGBITS, 0,
|
||||||
SectionKind::getMetadata());
|
SectionKind::getMetadata());
|
||||||
|
Loading…
Reference in New Issue
Block a user