1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Style: drop some unnecessary ';' [NFC]

llvm-svn: 275963
This commit is contained in:
Tobias Grosser 2016-07-19 09:01:46 +00:00
parent 37e609e198
commit fc9b1f99e6
3 changed files with 7 additions and 7 deletions

View File

@ -431,7 +431,7 @@ public:
}
/// Optimize this function for minimum size (-Oz).
bool optForMinSize() const { return hasFnAttribute(Attribute::MinSize); };
bool optForMinSize() const { return hasFnAttribute(Attribute::MinSize); }
/// Optimize this function for size (-Os) or minimum size (-Oz).
bool optForSize() const {

View File

@ -1202,7 +1202,7 @@ struct OperandBundleUse {
// Conservative answer: no operands have any attributes.
return false;
};
}
/// \brief Return the tag of this operand bundle as a string.
StringRef getTagName() const {
@ -1471,7 +1471,7 @@ public:
return std::equal(bundle_op_info_begin(), bundle_op_info_end(),
Other.bundle_op_info_begin());
};
}
/// \brief Return true if this operand bundle user contains operand bundles
/// with tags other than those specified in \p IDs.

View File

@ -1566,7 +1566,7 @@ public:
op_iterator arg_end() {
// [ call args ], [ operand bundles ], callee
return op_end() - getNumTotalBundleOperands() - 1;
};
}
/// \brief Iteration adapter for range-for loops.
iterator_range<op_iterator> arg_operands() {
@ -1580,7 +1580,7 @@ public:
const_op_iterator arg_end() const {
// [ call args ], [ operand bundles ], callee
return op_end() - getNumTotalBundleOperands() - 1;
};
}
/// \brief Iteration adapter for range-for loops.
iterator_range<const_op_iterator> arg_operands() const {
@ -3539,7 +3539,7 @@ public:
op_iterator arg_end() {
// [ invoke args ], [ operand bundles ], normal dest, unwind dest, callee
return op_end() - getNumTotalBundleOperands() - 3;
};
}
/// \brief Iteration adapter for range-for loops.
iterator_range<op_iterator> arg_operands() {
@ -3553,7 +3553,7 @@ public:
const_op_iterator arg_end() const {
// [ invoke args ], [ operand bundles ], normal dest, unwind dest, callee
return op_end() - getNumTotalBundleOperands() - 3;
};
}
/// \brief Iteration adapter for range-for loops.
iterator_range<const_op_iterator> arg_operands() const {