Make this pass registration static as well.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@38509 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/MemoryDependenceAnalysis.cpp b/lib/Analysis/MemoryDependenceAnalysis.cpp
index 31a3e02..af105cc 100644
--- a/lib/Analysis/MemoryDependenceAnalysis.cpp
+++ b/lib/Analysis/MemoryDependenceAnalysis.cpp
@@ -29,8 +29,8 @@
 Instruction* MemoryDependenceAnalysis::None = (Instruction*)~0;
   
 // Register this pass...
-RegisterPass<MemoryDependenceAnalysis> X("memdep",
-                                           "Memory Dependence Analysis");
+static RegisterPass<MemoryDependenceAnalysis> X("memdep",
+                                                "Memory Dependence Analysis");
 
 /// getAnalysisUsage - Does not modify anything.  It uses Alias Analysis.
 ///