// FIXME: Arch specific.
MCSection *S = Ctx.GetSection(Section);
if (S == 0)
- S = MCSection::Create(Section, SectionKind(), Ctx);
+ S = MCSection::Create(Section, false, SectionKind(), Ctx);
Out.SwitchSection(S);
return false;
// FIXME: Arch specific.
MCSection *S = Ctx.GetSection(Section);
if (S == 0)
- S = MCSection::Create(Section, SectionKind(), Ctx);
+ S = MCSection::Create(Section, false, SectionKind(), Ctx);
Out.SwitchSection(S);
return false;
// FIXME: Arch specific.
MCSection *S = Ctx.GetSection(Section);
if (S == 0)
- S = MCSection::Create(Section, SectionKind(), Ctx);
+ S = MCSection::Create(Section, false, SectionKind(), Ctx);
// Create the zerofill section but no symbol
Out.EmitZerofill(S);
// FIXME: Arch specific.
MCSection *S = Ctx.GetSection(Section);
if (S == 0)
- S = MCSection::Create(Section, SectionKind(), Ctx);
+ S = MCSection::Create(Section, false, SectionKind(), Ctx);
// Create the zerofill Symbol with Size and Pow2Alignment
Out.EmitZerofill(S, Sym, Size, Pow2Alignment);
// FIXME: Target hook & command line option for initial section.
Str.get()->SwitchSection(MCSection::Create("__TEXT,__text,"
"regular,pure_instructions",
+ false,
SectionKind::get(SectionKind::Text),
Ctx));