Reduce number of exported symbols
llvm-svn: 29220
diff --git a/llvm/lib/CodeGen/RegAllocSimple.cpp b/llvm/lib/CodeGen/RegAllocSimple.cpp
index fc90dd1..5d94f0a 100644
--- a/llvm/lib/CodeGen/RegAllocSimple.cpp
+++ b/llvm/lib/CodeGen/RegAllocSimple.cpp
@@ -30,8 +30,8 @@
using namespace llvm;
namespace {
- Statistic<> NumStores("ra-simple", "Number of stores added");
- Statistic<> NumLoads ("ra-simple", "Number of loads added");
+ static Statistic<> NumStores("ra-simple", "Number of stores added");
+ static Statistic<> NumLoads ("ra-simple", "Number of loads added");
class VISIBILITY_HIDDEN RegAllocSimple : public MachineFunctionPass {
MachineFunction *MF;