Remove this file; the code that it went with is no longer
[oota-llvm.git] / lib / Analysis / InstCount.cpp
index 2e0e8c6fcc97cdc070064088b147c2d030c3e06f..5f33a60e6fd39c499af10c2e0e078941a1daf9cc 100644 (file)
@@ -62,12 +62,12 @@ namespace {
     virtual void print(std::ostream &O, const Module *M) const {}
 
   };
-
-  char InstCount::ID = 0;
-  RegisterPass<InstCount> X("instcount",
-                            "Counts the various types of Instructions", true, true);
 }
 
+char InstCount::ID = 0;
+static RegisterPass<InstCount>
+X("instcount", "Counts the various types of Instructions", false, true);
+
 FunctionPass *llvm::createInstCountPass() { return new InstCount(); }
 
 // InstCount::run - This is the main Analysis entry point for a