From c718288f4939258a51ec5ae0c5be7b1a05eb6898 Mon Sep 17 00:00:00 2001 From: Lauro Ramos Venancio Date: Wed, 2 May 2007 20:37:47 +0000 Subject: Fix build error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36648 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Instrumentation/RSProfiling.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/Transforms/Instrumentation') diff --git a/lib/Transforms/Instrumentation/RSProfiling.cpp b/lib/Transforms/Instrumentation/RSProfiling.cpp index ad9a841cb0..321e3908e0 100644 --- a/lib/Transforms/Instrumentation/RSProfiling.cpp +++ b/lib/Transforms/Instrumentation/RSProfiling.cpp @@ -81,9 +81,7 @@ namespace { } }; - const int RSProfilers::ID = 0; static RegisterAnalysisGroup A("Profiling passes"); - const int NullProfilerRS::ID = 0; static RegisterPass NP("insert-null-profiling-rs", "Measure profiling framework overhead"); static RegisterAnalysisGroup NPT(NP); @@ -160,11 +158,14 @@ namespace { virtual void getAnalysisUsage(AnalysisUsage &AU) const; }; - const int ProfilerRS::ID = 0; RegisterPass X("insert-rs-profiling-framework", "Insert random sampling instrumentation framework"); } +const int RSProfilers::ID = 0; +const int NullProfilerRS::ID = 0; +const int ProfilerRS::ID = 0; + //Local utilities static void ReplacePhiPred(BasicBlock* btarget, BasicBlock* bold, BasicBlock* bnew); -- cgit v1.2.3