mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-22 10:24:26 +00:00
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168103 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -131,21 +131,21 @@ public:
|
||||
enum {
|
||||
IsExact = (1 << 0)
|
||||
};
|
||||
|
||||
|
||||
private:
|
||||
friend class BinaryOperator;
|
||||
friend class ConstantExpr;
|
||||
void setIsExact(bool B) {
|
||||
SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact);
|
||||
}
|
||||
|
||||
|
||||
public:
|
||||
/// isExact - Test whether this division is known to be exact, with
|
||||
/// zero remainder.
|
||||
bool isExact() const {
|
||||
return SubclassOptionalData & IsExact;
|
||||
}
|
||||
|
||||
|
||||
static bool isPossiblyExactOpcode(unsigned OpC) {
|
||||
return OpC == Instruction::SDiv ||
|
||||
OpC == Instruction::UDiv ||
|
||||
@ -182,7 +182,7 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
/// ConcreteOperator - A helper template for defining operators for individual
|
||||
/// opcodes.
|
||||
template<typename SuperClass, unsigned Opc>
|
||||
|
Reference in New Issue
Block a user