diff options
Diffstat (limited to 'contrib/llvm/tools/clang/lib/Checker/FixedAddressChecker.cpp')
-rw-r--r-- | contrib/llvm/tools/clang/lib/Checker/FixedAddressChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/tools/clang/lib/Checker/FixedAddressChecker.cpp b/contrib/llvm/tools/clang/lib/Checker/FixedAddressChecker.cpp index 4fce45b..29a3c3a 100644 --- a/contrib/llvm/tools/clang/lib/Checker/FixedAddressChecker.cpp +++ b/contrib/llvm/tools/clang/lib/Checker/FixedAddressChecker.cpp @@ -40,7 +40,7 @@ void FixedAddressChecker::PreVisitBinaryOperator(CheckerContext &C, // Using a fixed address is not portable because that address will probably // not be valid in all environments or platforms. - if (B->getOpcode() != BinaryOperator::Assign) + if (B->getOpcode() != BO_Assign) return; QualType T = B->getType(); |