diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-02 18:59:07 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-02 18:59:07 +0000 |
commit | 7b227fecb5e37b76105df848fb6372db90006d27 (patch) | |
tree | 26593758e8e8cb56aab53b2a0a1718ad7627787e | |
parent | b3067dc374c19fc98dd6891bafbf54f3ed56dc72 (diff) | |
download | bcm5719-llvm-7b227fecb5e37b76105df848fb6372db90006d27.tar.gz bcm5719-llvm-7b227fecb5e37b76105df848fb6372db90006d27.zip |
Fix some Wdocumentation warnings
llvm-svn: 296783
-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. /// |