[llvm] r372215 - Fix -Wdocumentation warning. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 18 04:22:23 PDT 2019


Author: rksimon
Date: Wed Sep 18 04:22:22 2019
New Revision: 372215

URL: http://llvm.org/viewvc/llvm-project?rev=372215&view=rev
Log:
Fix -Wdocumentation warning. NFCI.

Modified:
    llvm/trunk/include/llvm/CodeGen/GlobalISel/CombinerHelper.h

Modified: llvm/trunk/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/GlobalISel/CombinerHelper.h?rev=372215&r1=372214&r2=372215&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/GlobalISel/CombinerHelper.h (original)
+++ llvm/trunk/include/llvm/CodeGen/GlobalISel/CombinerHelper.h Wed Sep 18 04:22:22 2019
@@ -63,11 +63,11 @@ public:
   bool matchCombineCopy(MachineInstr &MI);
   void applyCombineCopy(MachineInstr &MI);
 
-  /// \brief Returns true if \p DefMI precedes \p UseMI or they are the same
+  /// Returns true if \p DefMI precedes \p UseMI or they are the same
   /// instruction. Both must be in the same basic block.
   bool isPredecessor(MachineInstr &DefMI, MachineInstr &UseMI);
 
-  /// \brief Returns true if \p DefMI dominates \p UseMI. By definition an
+  /// Returns true if \p DefMI dominates \p UseMI. By definition an
   /// instruction dominates itself.
   ///
   /// If we haven't been provided with a MachineDominatorTree during




More information about the llvm-commits mailing list