diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-03 12:09:11 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-03 12:09:11 +0000 |
commit | b01bb3a1b2529981f784a8044b9d997bebf58fb7 (patch) | |
tree | fbaefe67b8d7e868af98c22e811fa5c649f7aada | |
parent | 7b60a9ed0c0584fc5fd4b87e0019aad99b6be1e4 (diff) | |
download | bcm5719-llvm-b01bb3a1b2529981f784a8044b9d997bebf58fb7.tar.gz bcm5719-llvm-b01bb3a1b2529981f784a8044b9d997bebf58fb7.zip |
Fix Wdocumentation warning
llvm-svn: 296866
-rw-r--r-- | llvm/lib/CodeGen/BranchCoalescing.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/BranchCoalescing.cpp b/llvm/lib/CodeGen/BranchCoalescing.cpp index 67996ca75bb..efc5d535f52 100644 --- a/llvm/lib/CodeGen/BranchCoalescing.cpp +++ b/llvm/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<MachineOperand, 4> Cond; bool MustMoveDown; bool MustMoveUp; |