summaryrefslogtreecommitdiff
path: root/lib/Analysis/ProfileInfo.cpp
diff options
context:
space:
mode:
authorLauro Ramos Venancio <lauro.venancio@gmail.com>2007-05-02 20:37:47 +0000
committerLauro Ramos Venancio <lauro.venancio@gmail.com>2007-05-02 20:37:47 +0000
commitc718288f4939258a51ec5ae0c5be7b1a05eb6898 (patch)
tree780fb01eeeb530ffdc6a2066866b20194b25111e /lib/Analysis/ProfileInfo.cpp
parentce3b46552a03f502e56fb3c4db82f3f92c09eff9 (diff)
downloadllvm-c718288f4939258a51ec5ae0c5be7b1a05eb6898.tar.gz
llvm-c718288f4939258a51ec5ae0c5be7b1a05eb6898.tar.bz2
llvm-c718288f4939258a51ec5ae0c5be7b1a05eb6898.tar.xz
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.cpp2
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() {}