diff options
Diffstat (limited to 'clang/lib/Analysis/FixedAddressChecker.cpp')
-rw-r--r-- | clang/lib/Analysis/FixedAddressChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/FixedAddressChecker.cpp b/clang/lib/Analysis/FixedAddressChecker.cpp index 80096dcb70d..d8adaafa605 100644 --- a/clang/lib/Analysis/FixedAddressChecker.cpp +++ b/clang/lib/Analysis/FixedAddressChecker.cpp @@ -53,7 +53,7 @@ void FixedAddressChecker::PreVisitBinaryOperator(CheckerContext &C, if (!RV.isConstant() || RV.isZeroConstant()) return; - if (ExplodedNode *N = C.GenerateNode(B)) { + if (ExplodedNode *N = C.GenerateNode()) { if (!BT) BT = new BuiltinBug("Use fixed address", "Using a fixed address is not portable because that " |