summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/RegAllocGreedy.cpp
diff options
context:
space:
mode:
authorHiroshi Inoue <inouehrs@jp.ibm.com>2017-07-10 12:44:25 +0000
committerHiroshi Inoue <inouehrs@jp.ibm.com>2017-07-10 12:44:25 +0000
commita86c920b1ea8f5d8b429ea944fb38a21ca8cc2ed (patch)
treed885f3cb67d9009aefa29069a024ffc4f4084f1e /llvm/lib/CodeGen/RegAllocGreedy.cpp
parent730f2f9bb622a4b72231628239fe607d26224a07 (diff)
downloadbcm5719-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.cpp2
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;
OpenPOWER on IntegriCloud