Add back spaces I missed in the conversion to emitRawComments.

Sorry about that.

llvm-svn: 200171
This commit is contained in:
Rafael Espindola 2014-01-27 00:19:41 +00:00
parent bcf890bf07
commit 98f5b54f85
1 changed files with 3 additions and 3 deletions

View File

@ -90,10 +90,10 @@ bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
OutStreamer.SwitchSection(CommentSection);
if (STM.getGeneration() > AMDGPUSubtarget::NORTHERN_ISLANDS) {
OutStreamer.emitRawComment("Kernel info:", false);
OutStreamer.emitRawComment("NumSgprs: " + Twine(KernelInfo.NumSGPR),
OutStreamer.emitRawComment(" Kernel info:", false);
OutStreamer.emitRawComment(" NumSgprs: " + Twine(KernelInfo.NumSGPR),
false);
OutStreamer.emitRawComment("NumVgprs: " + Twine(KernelInfo.NumVGPR),
OutStreamer.emitRawComment(" NumVgprs: " + Twine(KernelInfo.NumVGPR),
false);
} else {
R600MachineFunctionInfo *MFI = MF.getInfo<R600MachineFunctionInfo>();