summaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAllocGreedy.cpp
diff options
context:
space:
mode:
authorAditya Nandakumar <aditya_nandakumar@apple.com>2013-11-19 23:51:32 +0000
committerAditya Nandakumar <aditya_nandakumar@apple.com>2013-11-19 23:51:32 +0000
commit3da011f561dfbc5e12ab25af09f6020ceabb28c0 (patch)
treeb4b0541eace77392fddd055b96d3e2895b6daadb /lib/CodeGen/RegAllocGreedy.cpp
parent2f0f12173252fc628c03376f2b105dd0cfc6cccd (diff)
downloadllvm-3da011f561dfbc5e12ab25af09f6020ceabb28c0.tar.gz
llvm-3da011f561dfbc5e12ab25af09f6020ceabb28c0.tar.bz2
llvm-3da011f561dfbc5e12ab25af09f6020ceabb28c0.tar.xz
Fixed an extra for(typo) in the comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195171 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocGreedy.cpp')
-rw-r--r--lib/CodeGen/RegAllocGreedy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp
index c08d955540..b6750a0d04 100644
--- a/lib/CodeGen/RegAllocGreedy.cpp
+++ b/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;