diff options
author | Michael Ilseman <milseman@apple.com> | 2012-11-15 22:34:00 +0000 |
---|---|---|
committer | Michael Ilseman <milseman@apple.com> | 2012-11-15 22:34:00 +0000 |
commit | 407a6169b729c72c3a7ddb01b8454ab0b4f6897c (patch) | |
tree | f9338cabe9f64abd11f335a6a605f92e2b5474cb /include/llvm/Operator.h | |
parent | bac29d328fe036dafea35e5900160e82f8b26689 (diff) |
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Operator.h')
-rw-r--r-- | include/llvm/Operator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Operator.h b/include/llvm/Operator.h index b326c11352..4f89377a89 100644 --- a/include/llvm/Operator.h +++ b/include/llvm/Operator.h @@ -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> |