Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaChecking.cpp114 static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) { in checkArgCount() argument
116 if (argCount == desiredArgCount) return false; in checkArgCount()
118 if (argCount < desiredArgCount) in checkArgCount()
120 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()
124 SourceRange range(call->getArg(desiredArgCount)->getBeginLoc(), in checkArgCount()
128 << 0 /*function call*/ << desiredArgCount << argCount in checkArgCount()