diff options
author | Aditya Nandakumar <aditya_nandakumar@apple.com> | 2013-11-19 23:51:32 +0000 |
---|---|---|
committer | Aditya Nandakumar <aditya_nandakumar@apple.com> | 2013-11-19 23:51:32 +0000 |
commit | c1fd0dd419ae07ece84baaeee78728d0d1c09e9d (patch) | |
tree | 55bc3a8d1934e5f758cdf12788f8fc39b3f06ebb /llvm/lib/CodeGen | |
parent | 5c0af48a11b1f7df28544fff3a9ab751e6f946f1 (diff) | |
download | bcm5719-llvm-c1fd0dd419ae07ece84baaeee78728d0d1c09e9d.tar.gz bcm5719-llvm-c1fd0dd419ae07ece84baaeee78728d0d1c09e9d.zip |
Fixed an extra for(typo) in the comments
llvm-svn: 195171
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocGreedy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocGreedy.cpp b/llvm/lib/CodeGen/RegAllocGreedy.cpp index c08d9555406..b6750a0d041 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<GlobalSplitCandidate, 32> GlobalCand; |