convert the rest of this over to use SwitchSection

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24448 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-11-21 07:16:34 +00:00
parent 224cfc2eac
commit 7b6e53cde7
3 changed files with 4 additions and 7 deletions

View File

@ -32,7 +32,7 @@ bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
printConstantPool(MF.getConstantPool());
// Print out labels for the function.
O << "\t.text\n";
SwitchSection("\t.text\n", MF.getFunction());
emitAlignment(4); // FIXME: This should be parameterized somewhere.
O << "\t.globl\t" << CurrentFnName << "\n";
if (!forCygwin && !forDarwin)

View File

@ -84,11 +84,7 @@ void X86SharedAsmPrinter::printConstantPool(MachineConstantPool *MCP) {
if (CP.empty()) return;
if (forDarwin) {
O << "\t.const\n";
} else {
O << "\t.section .rodata\n";
}
SwitchSection(forDarwin ? "\t.const\n" : "\t.section .rodata\n", 0);
for (unsigned i = 0, e = CP.size(); i != e; ++i) {
// FIXME: force doubles to be naturally aligned. We should handle this
@ -168,6 +164,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
}
if (forDarwin) {
SwitchSection("", 0);
// Output stubs for external global variables
if (GVStubs.begin() != GVStubs.end())
O << "\t.non_lazy_symbol_pointer\n";

View File

@ -32,7 +32,7 @@ bool X86IntelAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
printConstantPool(MF.getConstantPool());
// Print out labels for the function.
O << "\t.text\n";
SwitchSection("\t.text\n", MF.getFunction());
emitAlignment(4);
O << "\t.globl\t" << CurrentFnName << "\n";
if (!forCygwin && !forDarwin)