From: Owen Anderson Date: Wed, 6 Oct 2010 22:23:20 +0000 (+0000) Subject: Appease the clang self-host buildbot by providing a correct instantiation. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=9875903799e292c3972a247675c8ad4ea2212b05;p=oota-llvm.git Appease the clang self-host buildbot by providing a correct instantiation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115857 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp index 9d10f4e9243..9704b43cf57 100644 --- a/lib/Analysis/ProfileInfo.cpp +++ b/lib/Analysis/ProfileInfo.cpp @@ -24,6 +24,9 @@ #include using namespace llvm; +template<> +char llvm::ProfileInfoT::ID = 0; + // Register the ProfileInfo interface, providing a nice name to refer to. INITIALIZE_ANALYSIS_GROUP(ProfileInfo, "Profile Information"); @@ -43,9 +46,6 @@ ProfileInfoT::~ProfileInfoT() { if (MachineProfile) delete MachineProfile; } -template<> -char ProfileInfoT::ID = 0; - template<> char ProfileInfoT::ID = 0;