Clang API function terminology got changed
...at least in trunk 200400 towards Clang 3.5. Change-Id: I6e295e3a4cf721fbda9df8e7c5bed3993ee78216
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "compat.hxx"
|
||||
#include "plugin.hxx"
|
||||
|
||||
template<> struct std::iterator_traits<ExprIterator> {
|
||||
@@ -183,11 +184,11 @@ bool ImplicitBoolConversion::TraverseCallExpr(CallExpr * expr) {
|
||||
} else {
|
||||
std::ptrdiff_t n = j - expr->arg_begin();
|
||||
assert(n >= 0);
|
||||
assert(n < t->getNumArgs() || t->isVariadic());
|
||||
if (n < t->getNumArgs()
|
||||
&& !(t->getArgType(n)->isSpecificBuiltinType(
|
||||
assert(n < compat::getNumParams(*t) || t->isVariadic());
|
||||
if (n < compat::getNumParams(*t)
|
||||
&& !(compat::getParamType(*t, n)->isSpecificBuiltinType(
|
||||
BuiltinType::Int)
|
||||
|| (t->getArgType(n)->isSpecificBuiltinType(
|
||||
|| (compat::getParamType(*t, n)->isSpecificBuiltinType(
|
||||
BuiltinType::UInt))))
|
||||
{
|
||||
reportWarning(i);
|
||||
@@ -494,8 +495,10 @@ bool ImplicitBoolConversion::TraverseReturnStmt(ReturnStmt * stmt) {
|
||||
bool ImplicitBoolConversion::TraverseFunctionDecl(FunctionDecl * decl) {
|
||||
bool ext = hasCLanguageLinkageType(decl)
|
||||
&& decl->isThisDeclarationADefinition()
|
||||
&& (decl->getResultType()->isSpecificBuiltinType(BuiltinType::Int)
|
||||
|| decl->getResultType()->isSpecificBuiltinType(BuiltinType::UInt));
|
||||
&& (compat::getReturnType(*decl)->isSpecificBuiltinType(
|
||||
BuiltinType::Int)
|
||||
|| compat::getReturnType(*decl)->isSpecificBuiltinType(
|
||||
BuiltinType::UInt));
|
||||
if (ext) {
|
||||
assert(!externCIntFunctionDefinition);
|
||||
externCIntFunctionDefinition = true;
|
||||
|
Reference in New Issue
Block a user