From: Jim Grosbach Date: Wed, 19 Dec 2012 23:38:44 +0000 (+0000) Subject: Fix doc comment. '///' not '//'. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=dd2fa5195ea2d98b2b4ee18f9894ad674f132a40;p=oota-llvm.git Fix doc comment. '///' not '//'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170607 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCInstrDesc.h b/include/llvm/MC/MCInstrDesc.h index 02383f8bc65..c6165d6ffa5 100644 --- a/include/llvm/MC/MCInstrDesc.h +++ b/include/llvm/MC/MCInstrDesc.h @@ -258,9 +258,9 @@ public: return isBranch() & isBarrier() & !isIndirectBranch(); } - // isPredicable - Return true if this instruction has a predicate operand that - // controls execution. It may be set to 'always', or may be set to other - /// values. There are various methods in TargetInstrInfo that can be used to + /// isPredicable - Return true if this instruction has a predicate operand + /// that controls execution. It may be set to 'always', or may be set to other + /// values. There are various methods in TargetInstrInfo that can be used to /// control and modify the predicate in this instruction. bool isPredicable() const { return Flags & (1 << MCID::Predicable);