forked from OSchip/llvm-project
Add back spaces I missed in the conversion to emitRawComments.
Sorry about that. llvm-svn: 200171
This commit is contained in:
parent
bcf890bf07
commit
98f5b54f85
|
@ -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>();
|
||||
|
|
Loading…
Reference in New Issue