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 | 41223586a2d1cfc04bb6382aec67c086041afd73 (patch) | |
tree | 59a1f3803ef09f1e93af2ce25d30c545cba352a6 /llvm/lib/Analysis/ProfileInfo.cpp | |
parent | f1dcf69fc38e12100fa62a56f97dea269023ebe5 (diff) | |
download | bcm5719-llvm-41223586a2d1cfc04bb6382aec67c086041afd73.tar.gz bcm5719-llvm-41223586a2d1cfc04bb6382aec67c086041afd73.zip |
Fix build error.
llvm-svn: 36648
Diffstat (limited to 'llvm/lib/Analysis/ProfileInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/ProfileInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ProfileInfo.cpp b/llvm/lib/Analysis/ProfileInfo.cpp index 27da8162080..2a6a6a50bd0 100644 --- a/llvm/lib/Analysis/ProfileInfo.cpp +++ b/llvm/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() {} |