[llvm] r372214 - Fix -Wdocumentation "empty paragraph passed to '\brief'" warning. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 18 03:41:20 PDT 2019


Author: rksimon
Date: Wed Sep 18 03:41:20 2019
New Revision: 372214

URL: http://llvm.org/viewvc/llvm-project?rev=372214&view=rev
Log:
Fix -Wdocumentation "empty paragraph passed to '\brief'" 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=372214&r1=372213&r2=372214&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/GlobalISel/CombinerHelper.h (original)
+++ llvm/trunk/include/llvm/CodeGen/GlobalISel/CombinerHelper.h Wed Sep 18 03:41:20 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
+  /// \brief 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
+  /// \brief 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