Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h84 bool IsGNUVarargs : 1; variable
206 void setIsGNUVarargs() { IsGNUVarargs = true; } in setIsGNUVarargs()
208 bool isGNUVarargs() const { return IsGNUVarargs; } in isGNUVarargs()
209 bool isVariadic() const { return IsC99Varargs || IsGNUVarargs; } in isVariadic()
/src/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp52 IsC99Varargs(false), IsGNUVarargs(false), IsBuiltinMacro(false), in MacroInfo()
172 if (IsC99Varargs || IsGNUVarargs) { in dump()