diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2019-01-09 05:11:10 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2019-01-09 05:11:10 +0000 |
commit | dad8c6a1c9a32aea5c468f86c119c0dd244c164f (patch) | |
tree | 13466959a59faa0a8b64e3c53660425559612ac0 /llvm/lib/CodeGen/MachineVerifier.cpp | |
parent | 17f10abe1a3f23a28ce13c1647e19196a76adb32 (diff) | |
download | bcm5719-llvm-dad8c6a1c9a32aea5c468f86c119c0dd244c164f.tar.gz bcm5719-llvm-dad8c6a1c9a32aea5c468f86c119c0dd244c164f.zip |
[NFC] fix trivial typos in comments
llvm-svn: 350690
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 3128e5a7666..534d3699db2 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -683,7 +683,7 @@ MachineVerifier::visitMachineBasicBlockBefore(const MachineBasicBlock *MBB) { // out the bottom of the function. } else if (MBB->succ_size() == LandingPadSuccs.size()) { // It's possible that the block legitimately ends with a noreturn - // call or an unreachable, in which case it won't actuall fall + // call or an unreachable, in which case it won't actually fall // out of the block. } else if (MBB->succ_size() != 1+LandingPadSuccs.size()) { report("MBB exits via unconditional fall-through but doesn't have " |