diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-02-14 18:57:46 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-02-14 18:57:46 +0000 |
commit | 3c385e5f8d9008fff18597ca302be19fa86e51f6 (patch) | |
tree | 8daddebd1007dcd0f23f8a442032c584da996663 /lib/Analysis/GRExprEngine.cpp | |
parent | ff975cfab9ada27df86038286d1678084aeb3428 (diff) |
Add hook to add attributes to function declarations that we know
about, whether they are builtins or not. Use this to add the
appropriate "format" attribute to NSLog, NSLogv, asprintf, and
vasprintf, and to translate builtin attributes (from Builtins.def)
into actual attributes on the function declaration.
Use the "printf" format attribute on function declarations to
determine whether we should do format string checking, rather than
looking at an ad hoc list of builtins and "known" function names.
Be a bit more careful about when we consider a function a "builtin" in
C++.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64561 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index a48b18c9c6..1a7f35960c 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -1263,7 +1263,8 @@ void GRExprEngine::VisitCallRec(CallExpr* CE, NodeTy* Pred, if (isa<loc::FuncVal>(L)) { - if (unsigned id = cast<loc::FuncVal>(L).getDecl()->getBuiltinID()) + if (unsigned id + = cast<loc::FuncVal>(L).getDecl()->getBuiltinID(getContext())) switch (id) { case Builtin::BI__builtin_expect: { // For __builtin_expect, just return the value of the subexpression. |