diff options
-rw-r--r-- | llvm/lib/CodeGen/BranchCoalescing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/BranchCoalescing.cpp b/llvm/lib/CodeGen/BranchCoalescing.cpp index 7be7e339c24..67996ca75bb 100644 --- a/llvm/lib/CodeGen/BranchCoalescing.cpp +++ b/llvm/lib/CodeGen/BranchCoalescing.cpp @@ -390,7 +390,7 @@ void BranchCoalescing::moveAndUpdatePHIs(MachineBasicBlock *SourceMBB, /// the TargetMBB if there are no uses of it within the TargetMBB PHI nodes. /// /// \param[in] MI the machine instruction to move. -/// \param[in] MBB the machine basic block to move to +/// \param[in] TargetMBB the machine basic block to move to /// \return true if it is safe to move MI to beginning of TargetMBB, /// false otherwise. /// @@ -421,7 +421,7 @@ bool BranchCoalescing::canMoveToBeginning(const MachineInstr &MI, /// it's own MBB. /// /// \param[in] MI the machine instruction to move. -/// \param[in] MBB the machine basic block to move to +/// \param[in] TargetMBB the machine basic block to move to /// \return true if it is safe to move MI to end of TargetMBB, /// false otherwise. /// |