From: Chandler Carruth Date: Sun, 5 Jan 2014 10:38:52 +0000 (+0000) Subject: [PM] Add a definition for the static PassID in the CallGraphAnalysis. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=5c1c0bd7142c57ae2291e2fbaa27fdb9595e808a [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 --- diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp index de8164cc2db..87369fb6bd4 100644 --- a/lib/Analysis/IPA/CallGraph.cpp +++ b/lib/Analysis/IPA/CallGraph.cpp @@ -236,6 +236,12 @@ void CallGraphNode::replaceCallEdge(CallSite CS, } } +//===----------------------------------------------------------------------===// +// Out-of-line definitions of CallGraphAnalysis class members. +// + +char CallGraphAnalysis::PassID; + //===----------------------------------------------------------------------===// // Implementations of the CallGraphWrapperPass class methods. //