[llvm] r195171 - Fixed an extra for(typo) in the comments
Aditya Nandakumar
aditya_nandakumar at apple.com
Tue Nov 19 15:51:32 PST 2013
Author: aditya_nandakumar
Date: Tue Nov 19 17:51:32 2013
New Revision: 195171
URL: http://llvm.org/viewvc/llvm-project?rev=195171&view=rev
Log:
Fixed an extra for(typo) in the comments
Modified:
llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp
Modified: llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp?rev=195171&r1=195170&r2=195171&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp (original)
+++ llvm/trunk/lib/CodeGen/RegAllocGreedy.cpp Tue Nov 19 17:51:32 2013
@@ -217,7 +217,7 @@ class RAGreedy : public MachineFunctionP
}
};
- /// 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<GlobalSplitCandidate, 32> GlobalCand;
More information about the llvm-commits
mailing list