Initialize the IdentifierInfo pointer. Hope this fixes the buildbot breakage.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@258591
91177308-0d34-0410-b5e6-
96231b3b80d8
/// call. Omit this parameter to match every occurance of call with a given
/// name regardless the number of arguments.
CallDescription(StringRef FuncName, unsigned RequiredArgs = NoArgRequirement)
- : FuncName(FuncName), RequiredArgs(RequiredArgs) {}
+ : II(nullptr), FuncName(FuncName), RequiredArgs(RequiredArgs) {}
};
template<typename T = CallEvent>