1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

AMDGPU: Remove duplicate print outs from .AMDGPU.csdata

Differential Revision: https://reviews.llvm.org/D35428

llvm-svn: 308145
This commit is contained in:
Konstantin Zhuravlyov 2017-07-16 19:24:08 +00:00
parent cafe7229d5
commit 72fb813b49

View File

@ -268,19 +268,10 @@ bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
CurrentProgramInfo.ScratchSize,
getFunctionCodeSize(MF));
OutStreamer->emitRawComment(" codeLenInByte = " +
Twine(getFunctionCodeSize(MF)), false);
OutStreamer->emitRawComment(
" NumSgprs: " + Twine(CurrentProgramInfo.NumSGPR), false);
OutStreamer->emitRawComment(
" NumVgprs: " + Twine(CurrentProgramInfo.NumVGPR), false);
OutStreamer->emitRawComment(
" FloatMode: " + Twine(CurrentProgramInfo.FloatMode), false);
OutStreamer->emitRawComment(
" IeeeMode: " + Twine(CurrentProgramInfo.IEEEMode), false);
OutStreamer->emitRawComment(
" ScratchSize: " + Twine(CurrentProgramInfo.ScratchSize), false);
OutStreamer->emitRawComment(
" LDSByteSize: " + Twine(CurrentProgramInfo.LDSSize) +
" bytes/workgroup (compile time only)", false);