From ef46291cb39a72b400a35a61f1ea40d272c0a745 Mon Sep 17 00:00:00 2001 From: Jingyue Wu Date: Tue, 3 Feb 2015 17:57:38 +0000 Subject: [PATCH] Remove usernames from TODOs, NFC 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 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Target/NVPTX/NVPTXAsmPrinter.cpp b/lib/Target/NVPTX/NVPTXAsmPrinter.cpp index 93f82b24ff9..2295f797cff 100644 --- a/lib/Target/NVPTX/NVPTXAsmPrinter.cpp +++ b/lib/Target/NVPTX/NVPTXAsmPrinter.cpp @@ -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(); - // 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(&MBB))) return false; -- 2.34.1