mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 15:48:38 +00:00
Revert r80305, I forgot a dependent change.
--- Reverse-merging r80305 into '.': U tools/llvm-mc/AsmParser.cpp llvm-svn: 80309
This commit is contained in:
parent
c1fe40a1b3
commit
f0714ea058
@ -1287,10 +1287,15 @@ bool AsmParser::ParseDirectiveDarwinZerofill() {
|
||||
// If this is the end of the line all that was wanted was to create the
|
||||
// the section but with no symbol.
|
||||
if (Lexer.is(AsmToken::EndOfStatement)) {
|
||||
// FIXME: CACHE THIS.
|
||||
MCSection *S = 0; //Ctx.GetSection(Section);
|
||||
if (S == 0)
|
||||
S = MCSectionMachO::Create(Segment, Section,
|
||||
MCSectionMachO::S_ZEROFILL, 0,
|
||||
SectionKind(), Ctx);
|
||||
|
||||
// Create the zerofill section but no symbol
|
||||
Out.EmitZerofill(getMachOSection(Segment, Section,
|
||||
MCSectionMachO::S_ZEROFILL, 0,
|
||||
SectionKind()));
|
||||
Out.EmitZerofill(S);
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -1343,13 +1348,16 @@ bool AsmParser::ParseDirectiveDarwinZerofill() {
|
||||
if (!Sym->isUndefined())
|
||||
return Error(IDLoc, "invalid symbol redefinition");
|
||||
|
||||
// Create the zerofill Symbol with Size and Pow2Alignment
|
||||
//
|
||||
// FIXME: Arch specific.
|
||||
Out.EmitZerofill(getMachOSection(Segment, Section,
|
||||
MCSectionMachO::S_ZEROFILL, 0,
|
||||
SectionKind()),
|
||||
Sym, Size, Pow2Alignment);
|
||||
// FIXME: CACHE.
|
||||
MCSection *S = 0; //Ctx.GetSection(Section);
|
||||
if (S == 0)
|
||||
S = MCSectionMachO::Create(Segment, Section,
|
||||
MCSectionMachO::S_ZEROFILL, 0,
|
||||
SectionKind(), Ctx);
|
||||
|
||||
// Create the zerofill Symbol with Size and Pow2Alignment
|
||||
Out.EmitZerofill(S, Sym, Size, Pow2Alignment);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user