[PATCH] D35428: AMDGPU: Remove duplicate print outs from .AMDGPU.csdata
Konstantin Zhuravlyov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Jul 16 12:24:39 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL308145: AMDGPU: Remove duplicate print outs from .AMDGPU.csdata (authored by kzhuravl).
Changed prior to commit:
https://reviews.llvm.org/D35428?vs=106679&id=106814#toc
Repository:
rL LLVM
https://reviews.llvm.org/D35428
Files:
llvm/trunk/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
Index: llvm/trunk/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
===================================================================
--- llvm/trunk/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
+++ llvm/trunk/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
@@ -268,20 +268,11 @@
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);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35428.106814.patch
Type: text/x-patch
Size: 1207 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170716/45207b74/attachment.bin>
More information about the llvm-commits
mailing list