From: Joel Jones Date: Thu, 6 Jul 2017 14:17:36 +0000 (+0000) Subject: Doxygen formatting. NFCI X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24fbea1d3bc1aee19d318d892f540dd18e74ccbd;p=llvm Doxygen formatting. NFCI git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@307263 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/AArch64/AArch64InstrInfo.cpp b/lib/Target/AArch64/AArch64InstrInfo.cpp index 314e89bbca8..f2e3c221019 100644 --- a/lib/Target/AArch64/AArch64InstrInfo.cpp +++ b/lib/Target/AArch64/AArch64InstrInfo.cpp @@ -4216,26 +4216,36 @@ void AArch64InstrInfo::genAlternativeCodeSequence( /// \brief Replace csincr-branch sequence by simple conditional branch /// /// Examples: -/// 1. +/// 1. \code /// csinc w9, wzr, wzr, /// tbnz w9, #0, 0x44 +/// \endcode /// to +/// \code /// b. +/// \endcode /// -/// 2. +/// 2. \code /// csinc w9, wzr, wzr, /// tbz w9, #0, 0x44 +/// \endcode /// to +/// \code /// b. +/// \endcode /// /// Replace compare and branch sequence by TBZ/TBNZ instruction when the /// compare's constant operand is power of 2. /// /// Examples: +/// \code /// and w8, w8, #0x400 /// cbnz w8, L1 +/// \endcode /// to +/// \code /// tbnz w8, #10, L1 +/// \endcode /// /// \param MI Conditional Branch /// \return True when the simple conditional branch is generated