[llvm] r227991 - Remove usernames from TODOs, NFC

Jingyue Wu jingyue at google.com
Tue Feb 3 09:57:38 PST 2015


Author: jingyue
Date: Tue Feb  3 11:57:38 2015
New Revision: 227991

URL: http://llvm.org/viewvc/llvm-project?rev=227991&view=rev
Log:
Remove usernames from TODOs, NFC

making the style consistent with the rest

Modified:
    llvm/trunk/lib/Target/NVPTX/NVPTXAsmPrinter.cpp

Modified: llvm/trunk/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/NVPTX/NVPTXAsmPrinter.cpp?rev=227991&r1=227990&r2=227991&view=diff
==============================================================================
--- llvm/trunk/lib/Target/NVPTX/NVPTXAsmPrinter.cpp (original)
+++ llvm/trunk/lib/Target/NVPTX/NVPTXAsmPrinter.cpp Tue Feb  3 11:57:38 2015
@@ -422,12 +422,11 @@ void NVPTXAsmPrinter::printReturnValStr(
 
 // Return true if MBB is the header of a loop marked with
 // llvm.loop.unroll.disable.
-// TODO(jingyue): consider "#pragma unroll 1" which is equivalent to "#pragma
-// nounroll".
+// TODO: consider "#pragma unroll 1" which is equivalent to "#pragma nounroll".
 bool NVPTXAsmPrinter::isLoopHeaderOfNoUnroll(
     const MachineBasicBlock &MBB) const {
   MachineLoopInfo &LI = getAnalysis<MachineLoopInfo>();
-  // TODO(jingyue): isLoopHeader() should take "const MachineBasicBlock *".
+  // TODO: isLoopHeader() should take "const MachineBasicBlock *".
   // We insert .pragma "nounroll" only to the loop header.
   if (!LI.isLoopHeader(const_cast<MachineBasicBlock *>(&MBB)))
     return false;





More information about the llvm-commits mailing list