mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
remove uses of EOL.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94252 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
245834dde5
commit
f537ce1752
@ -139,14 +139,11 @@ void OcamlGCMetadataPrinter::finishAssembly(raw_ostream &OS, AsmPrinter &AP,
|
||||
}
|
||||
|
||||
OS << AddressDirective
|
||||
<< MAI.getPrivateGlobalPrefix() << "label" << J->Num;
|
||||
AP.EOL("call return address");
|
||||
<< MAI.getPrivateGlobalPrefix() << "label" << J->Num << '\n';
|
||||
|
||||
AP.EmitInt16(FrameSize);
|
||||
AP.EOL("stack frame size");
|
||||
|
||||
AP.EmitInt16(LiveCount);
|
||||
AP.EOL("live root count");
|
||||
|
||||
for (GCFunctionInfo::live_iterator K = FI.live_begin(J),
|
||||
KE = FI.live_end(J); K != KE; ++K) {
|
||||
@ -154,8 +151,7 @@ void OcamlGCMetadataPrinter::finishAssembly(raw_ostream &OS, AsmPrinter &AP,
|
||||
"GC root stack offset is outside of fixed stack frame and out "
|
||||
"of range for ocaml GC!");
|
||||
|
||||
OS << "\t.word\t" << K->StackOffset;
|
||||
AP.EOL("stack offset");
|
||||
AP.EmitInt32(K->StackOffset);
|
||||
}
|
||||
|
||||
AP.EmitAlignment(AddressAlignLog);
|
||||
|
Loading…
Reference in New Issue
Block a user