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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227991 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/NVPTX/NVPTXAsmPrinter.cpp

index 93f82b24ff9452e2791e84a1be24e7431fc75311..2295f797cff5ce028c1164d6062e767a62a86b20 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;