From d79dcd8db12f86b1e0ed9ad6b159c18621c0fd9e Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Fri, 3 Mar 2017 12:09:11 +0000 Subject: [PATCH] Fix Wdocumentation warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296866 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/BranchCoalescing.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.50.1