1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

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 7ee6a0aa63
commit c1b8f12d60

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