diff options
author | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-05-02 20:37:47 +0000 |
---|---|---|
committer | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-05-02 20:37:47 +0000 |
commit | c718288f4939258a51ec5ae0c5be7b1a05eb6898 (patch) | |
tree | 780fb01eeeb530ffdc6a2066866b20194b25111e /lib/Analysis/ProfileInfo.cpp | |
parent | ce3b46552a03f502e56fb3c4db82f3f92c09eff9 (diff) |
Fix build error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ProfileInfo.cpp')
-rw-r--r-- | lib/Analysis/ProfileInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp index 27da816208..2a6a6a50bd 100644 --- a/lib/Analysis/ProfileInfo.cpp +++ b/lib/Analysis/ProfileInfo.cpp @@ -22,9 +22,9 @@ using namespace llvm; // Register the ProfileInfo interface, providing a nice name to refer to. namespace { - const int ProfileInfo::ID = 0; RegisterAnalysisGroup<ProfileInfo> Z("Profile Information"); } +const int ProfileInfo::ID = 0; ProfileInfo::~ProfileInfo() {} |