From c1fd0dd419ae07ece84baaeee78728d0d1c09e9d Mon Sep 17 00:00:00 2001 From: Aditya Nandakumar Date: Tue, 19 Nov 2013 23:51:32 +0000 Subject: [PATCH] Fixed an extra for(typo) in the comments llvm-svn: 195171 --- llvm/lib/CodeGen/RegAllocGreedy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/RegAllocGreedy.cpp b/llvm/lib/CodeGen/RegAllocGreedy.cpp index c08d95554060..b6750a0d0419 100644 --- a/llvm/lib/CodeGen/RegAllocGreedy.cpp +++ b/llvm/lib/CodeGen/RegAllocGreedy.cpp @@ -217,7 +217,7 @@ class RAGreedy : public MachineFunctionPass, } }; - /// Candidate info for for each PhysReg in AllocationOrder. + /// Candidate info for each PhysReg in AllocationOrder. /// This vector never shrinks, but grows to the size of the largest register /// class. SmallVector GlobalCand;