diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2017-02-15 22:19:06 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2017-02-15 22:19:06 +0000 |
commit | 900b21c350aaa5055276655973f047d49f59e9db (patch) | |
tree | 8ad59f0e1988edb5a36a5d2a034f17b2258065db /llvm/lib/CodeGen/MachineVerifier.cpp | |
parent | 46f68f50f020ef1e955814eaf98a7a7e67fc39fc (diff) | |
download | bcm5719-llvm-900b21c350aaa5055276655973f047d49f59e9db.tar.gz bcm5719-llvm-900b21c350aaa5055276655973f047d49f59e9db.zip |
Fix typos
llvm-svn: 295246
Diffstat (limited to 'llvm/lib/CodeGen/MachineVerifier.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineVerifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index a98139f9e5a..74709dc0888 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -572,7 +572,7 @@ MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) { for (const auto &LI : MBB->liveins()) { if (isAllocatable(LI.PhysReg) && !MBB->isEHPad() && MBB->getIterator() != MBB->getParent()->begin()) { - report("MBB has allocable live-in, but isn't entry or landing-pad.", MBB); + report("MBB has allocatable live-in, but isn't entry or landing-pad.", MBB); } } } |