1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Change a .size directive to use a tab instead of a space, for consistency.

llvm-svn: 40672
This commit is contained in:
Dan Gohman 2007-08-01 14:42:30 +00:00
parent 53bb686577
commit 8e7234519e

View File

@ -180,7 +180,7 @@ bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
}
if (TAI->hasDotTypeDotSizeDirective())
O << "\t.size " << CurrentFnName << ", .-" << CurrentFnName << "\n";
O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
if (TAI->doesSupportDebugInformation()) {
// Emit post-function debug information.