From: Simon Pilgrim Date: Fri, 3 Mar 2017 12:09:11 +0000 (+0000) Subject: Fix Wdocumentation warning X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d79dcd8db12f86b1e0ed9ad6b159c18621c0fd9e;p=llvm Fix Wdocumentation warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296866 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/BranchCoalescing.cpp b/lib/CodeGen/BranchCoalescing.cpp index 67996ca75bb..efc5d535f52 100644 --- a/lib/CodeGen/BranchCoalescing.cpp +++ b/lib/CodeGen/BranchCoalescing.cpp @@ -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 Cond; bool MustMoveDown; bool MustMoveUp;