OSDN Git Service

Fix doc comment. '///' not '//'.
authorJim Grosbach <grosbach@apple.com>
Wed, 19 Dec 2012 23:38:44 +0000 (23:38 +0000)
committerJim Grosbach <grosbach@apple.com>
Wed, 19 Dec 2012 23:38:44 +0000 (23:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170607 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCInstrDesc.h

index 02383f8..c6165d6 100644 (file)
@@ -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);