diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-10 12:44:25 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-10 12:44:25 +0000 |
commit | a86c920b1ea8f5d8b429ea944fb38a21ca8cc2ed (patch) | |
tree | d885f3cb67d9009aefa29069a024ffc4f4084f1e /llvm/lib/CodeGen/RegAllocGreedy.cpp | |
parent | 730f2f9bb622a4b72231628239fe607d26224a07 (diff) | |
download | bcm5719-llvm-a86c920b1ea8f5d8b429ea944fb38a21ca8cc2ed.tar.gz bcm5719-llvm-a86c920b1ea8f5d8b429ea944fb38a21ca8cc2ed.zip |
fix typos in comments and error messages; NFC
llvm-svn: 307533
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocGreedy.cpp')
-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 9562652556a..020e81eca2d 100644 --- a/llvm/lib/CodeGen/RegAllocGreedy.cpp +++ b/llvm/lib/CodeGen/RegAllocGreedy.cpp @@ -2458,7 +2458,7 @@ void RAGreedy::tryHintRecoloring(LiveInterval &VirtReg) { do { Reg = RecoloringCandidates.pop_back_val(); - // We cannot recolor physcal register. + // We cannot recolor physical register. if (TargetRegisterInfo::isPhysicalRegister(Reg)) continue; |