[analyzer] When inlining, make sure we use the definition decl.
This was a regression introduced during the CallEvent changes; a call to FunctionDecl::hasBody was also being used to replace the decl found by lookup with the actual definition. To keep from making this mistake again (particularly if/when we start inlining Objective-C methods), this commit adds a "getDefinition()" method to CallEvent, which should do the right thing under any circumstances. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159940 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/StaticAnalyzer/Core/PathSensitive/Calls.h 28 additions, 0 deletionsinclude/clang/StaticAnalyzer/Core/PathSensitive/Calls.h
- lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp 7 additions, 6 deletionslib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
- test/Analysis/inline.c 14 additions, 1 deletiontest/Analysis/inline.c
Loading
Please register or sign in to comment