summaryrefslogtreecommitdiff
path: root/lib/Analysis
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-01-05 10:38:52 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-01-05 10:38:52 +0000
commit5c1c0bd7142c57ae2291e2fbaa27fdb9595e808a (patch)
tree1e588b0058cccc7d40f828fd9e69d1a5fdcc7661 /lib/Analysis
parenta2a28517f1d1fe41b6509e817f3e5a3a24c1bede (diff)
downloadllvm-5c1c0bd7142c57ae2291e2fbaa27fdb9595e808a.tar.gz
llvm-5c1c0bd7142c57ae2291e2fbaa27fdb9595e808a.tar.bz2
llvm-5c1c0bd7142c57ae2291e2fbaa27fdb9595e808a.tar.xz
[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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198556 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/IPA/CallGraph.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp
index de8164cc2d..87369fb6bd 100644
--- a/lib/Analysis/IPA/CallGraph.cpp
+++ b/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.
//