Home
last modified time | relevance | path

Searched refs:desiredArgCount (Results 1 – 1 of 1) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp110 static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) { in checkArgCount() argument
112 if (argCount == desiredArgCount) return false; in checkArgCount()
114 if (argCount < desiredArgCount) in checkArgCount()
116 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()
120 SourceRange range(call->getArg(desiredArgCount)->getBeginLoc(), in checkArgCount()
124 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()