[llvm] r293744 - *MacroFusion.cpp: Suppress warnings to eliminate \param(s). [-Wdocumentation]

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 31 23:30:46 PST 2017


Author: chapuni
Date: Wed Feb  1 01:30:46 2017
New Revision: 293744

URL: http://llvm.org/viewvc/llvm-project?rev=293744&view=rev
Log:
*MacroFusion.cpp: Suppress warnings to eliminate \param(s). [-Wdocumentation]

Modified:
    llvm/trunk/lib/Target/AArch64/AArch64MacroFusion.cpp
    llvm/trunk/lib/Target/X86/X86MacroFusion.cpp

Modified: llvm/trunk/lib/Target/AArch64/AArch64MacroFusion.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64MacroFusion.cpp?rev=293744&r1=293743&r2=293744&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64MacroFusion.cpp (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64MacroFusion.cpp Wed Feb  1 01:30:46 2017
@@ -26,7 +26,7 @@ static cl::opt<bool> EnableMacroFusion("
 
 namespace {
 
-/// \brief Verify that the instruction pair, \param First and \param Second,
+/// \brief Verify that the instruction pair, First and Second,
 /// should be scheduled back to back.  Given an anchor instruction, if the other
 /// instruction is unspecified, then verify that the anchor instruction may be
 /// part of a pair at all.
@@ -158,7 +158,7 @@ static bool shouldScheduleAdjacent(const
 }
 
 /// \brief Implement the fusion of instruction pairs in the scheduling
-/// \param DAG, anchored at the instruction in \param ASU. \param Preds
+/// DAG, anchored at the instruction in ASU. Preds
 /// indicates if its dependencies in \param APreds are predecessors instead of
 /// successors.
 static bool scheduleAdjacentImpl(ScheduleDAGMI *DAG, SUnit *ASU,

Modified: llvm/trunk/lib/Target/X86/X86MacroFusion.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86MacroFusion.cpp?rev=293744&r1=293743&r2=293744&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86MacroFusion.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86MacroFusion.cpp Wed Feb  1 01:30:46 2017
@@ -26,7 +26,7 @@ static cl::opt<bool> EnableMacroFusion("
 
 namespace {
 
-/// \brief Verify that the instruction pair, \param First and \param Second,
+/// \brief Verify that the instruction pair, First and Second,
 /// should be scheduled back to back.  If either instruction is unspecified,
 /// then verify that the other instruction may be part of a pair at all.
 static bool shouldScheduleAdjacent(const X86Subtarget &ST,




More information about the llvm-commits mailing list