diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-01-05 10:38:52 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-01-05 10:38:52 +0000 |
commit | c4ddab6ff23cefb07b06f2ab4e06773b82aa84e2 (patch) | |
tree | e3a9e563d551edf92f34e5f3b18738397327448d /llvm/lib/Analysis/IPA/CallGraph.cpp | |
parent | cde91b4279040535cdfdc968b3ce373e5565c75f (diff) | |
download | bcm5719-llvm-c4ddab6ff23cefb07b06f2ab4e06773b82aa84e2.tar.gz bcm5719-llvm-c4ddab6ff23cefb07b06f2ab4e06773b82aa84e2.zip |
[PM] Add a definition for the static PassID in the CallGraphAnalysis.
Missed this when adding the skeleton analysis. Caught by a build break
in the next patch I'm working on when trying to use the analysis.
llvm-svn: 198556
Diffstat (limited to 'llvm/lib/Analysis/IPA/CallGraph.cpp')
-rw-r--r-- | llvm/lib/Analysis/IPA/CallGraph.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/IPA/CallGraph.cpp b/llvm/lib/Analysis/IPA/CallGraph.cpp index de8164cc2db..87369fb6bd4 100644 --- a/llvm/lib/Analysis/IPA/CallGraph.cpp +++ b/llvm/lib/Analysis/IPA/CallGraph.cpp @@ -237,6 +237,12 @@ void CallGraphNode::replaceCallEdge(CallSite CS, } //===----------------------------------------------------------------------===// +// Out-of-line definitions of CallGraphAnalysis class members. +// + +char CallGraphAnalysis::PassID; + +//===----------------------------------------------------------------------===// // Implementations of the CallGraphWrapperPass class methods. // |