Add back spaces I missed in the conversion to emitRawComments.

Sorry about that.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200171 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2014-01-27 00:19:41 +00:00
parent e881f38db6
commit 888177e91b

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>();