Remove usernames from TODOs, NFC
authorJingyue Wu <jingyue@google.com>
Tue, 3 Feb 2015 17:57:38 +0000 (17:57 +0000)
committerJingyue Wu <jingyue@google.com>
Tue, 3 Feb 2015 17:57:38 +0000 (17:57 +0000)
making the style consistent with the rest

llvm-svn: 227991

llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp

index 93f82b2..2295f79 100644 (file)
@@ -422,12 +422,11 @@ void NVPTXAsmPrinter::printReturnValStr(const MachineFunction &MF,
 
 // 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;