Fix doc comment. '///' not '//'.

llvm-svn: 170607
This commit is contained in:
Jim Grosbach 2012-12-19 23:38:44 +00:00
parent 0389e528ab
commit 98e0b8e273
1 changed files with 3 additions and 3 deletions

View 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);