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 f7325ccf90
commit d541c831c3
1 changed files with 1 additions and 1 deletions

View File

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