commit | 68584ed35ad819a1668e3f527ba7f5dd4ae6a333 | [log] [tgz] |
---|---|---|
author | Douglas Gregor <dgregor@apple.com> | Thu Jun 18 16:11:24 2009 +0000 |
committer | Douglas Gregor <dgregor@apple.com> | Thu Jun 18 16:11:24 2009 +0000 |
tree | f92e4dc8a0ad0128f011a81e4ef954ff1ea7311c | |
parent | 0adea828ec9db09bf54ca4efa54b2a2f688726b5 [diff] [blame] |
Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73702 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/GRExprEngineInternalChecks.cpp b/lib/Analysis/GRExprEngineInternalChecks.cpp index 9aea124..a0de13f 100644 --- a/lib/Analysis/GRExprEngineInternalChecks.cpp +++ b/lib/Analysis/GRExprEngineInternalChecks.cpp
@@ -569,7 +569,7 @@ if (!FD) return false; - const NonNullAttr* Att = FD->getAttr<NonNullAttr>(); + const NonNullAttr* Att = FD->getAttr<NonNullAttr>(BR.getContext()); if (!Att) return false;