[llvm] r296866 - Fix Wdocumentation warning
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 3 04:09:11 PST 2017
Author: rksimon
Date: Fri Mar 3 06:09:11 2017
New Revision: 296866
URL: http://llvm.org/viewvc/llvm-project?rev=296866&view=rev
Log:
Fix Wdocumentation warning
Modified:
llvm/trunk/lib/CodeGen/BranchCoalescing.cpp
Modified: llvm/trunk/lib/CodeGen/BranchCoalescing.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/BranchCoalescing.cpp?rev=296866&r1=296865&r2=296866&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/BranchCoalescing.cpp (original)
+++ llvm/trunk/lib/CodeGen/BranchCoalescing.cpp Fri Mar 3 06:09:11 2017
@@ -134,9 +134,9 @@ namespace {
class BranchCoalescing : public MachineFunctionPass {
struct CoalescingCandidateInfo {
- MachineBasicBlock *BranchBlock; //< Block containing the branch
- MachineBasicBlock *BranchTargetBlock; //< Block branched to
- MachineBasicBlock *FallThroughBlock; //< Fall-through if branch not taken
+ MachineBasicBlock *BranchBlock; // Block containing the branch
+ MachineBasicBlock *BranchTargetBlock; // Block branched to
+ MachineBasicBlock *FallThroughBlock; // Fall-through if branch not taken
SmallVector<MachineOperand, 4> Cond;
bool MustMoveDown;
bool MustMoveUp;
More information about the llvm-commits
mailing list