summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2016-01-23 00:45:37 +0000
committerAnna Zaks <ganna@apple.com>2016-01-23 00:45:37 +0000
commite2fcffb0f901fdd8f2cd33b20e1d1c4cb54142d7 (patch)
treecfa13aa29c7aabf42fd19c3a922e188d36711e19
parent160dcba81f3610175876ffe8915b18033862ff7e (diff)
downloadbcm5719-llvm-e2fcffb0f901fdd8f2cd33b20e1d1c4cb54142d7.tar.gz
bcm5719-llvm-e2fcffb0f901fdd8f2cd33b20e1d1c4cb54142d7.zip
[analyzer] Fixup r258572 Utility to match function calls.
Initialize the IdentifierInfo pointer. Hope this fixes the buildbot breakage. llvm-svn: 258591
-rw-r--r--clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
index a67204c3bd4..55fd4b8880b 100644
--- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
+++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
@@ -67,7 +67,7 @@ public:
/// 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>
OpenPOWER on IntegriCloud