diff options
author | Owen Anderson <resistor@mac.com> | 2010-10-13 21:49:58 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-10-13 21:49:58 +0000 |
commit | 325e2643559fcec8b0396dfa16e415cc86a22a09 (patch) | |
tree | 71dfac12d39bf48c68a06fda5cf2b40429797bb2 /lib/Analysis/IPA | |
parent | a7dbc1ead75c99c16fee398c2b85adedccebffc3 (diff) | |
download | external_llvm-325e2643559fcec8b0396dfa16e415cc86a22a09.zip external_llvm-325e2643559fcec8b0396dfa16e415cc86a22a09.tar.gz external_llvm-325e2643559fcec8b0396dfa16e415cc86a22a09.tar.bz2 |
Analysis groups need to initialize their default implementations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116441 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA')
-rw-r--r-- | lib/Analysis/IPA/CallGraph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp index a555222..2234649 100644 --- a/lib/Analysis/IPA/CallGraph.cpp +++ b/lib/Analysis/IPA/CallGraph.cpp @@ -171,7 +171,7 @@ private: } //End anonymous namespace -INITIALIZE_ANALYSIS_GROUP(CallGraph, "Call Graph") +INITIALIZE_ANALYSIS_GROUP(CallGraph, "Call Graph", BasicCallGraph) INITIALIZE_AG_PASS(BasicCallGraph, CallGraph, "basiccg", "Basic CallGraph Construction", false, true, true) |