switch to TrackingVH instead of WeakVH, since these can never
[oota-llvm.git] / lib / VMCore / PrintModulePass.cpp
index 0a7f4497a8e6a9706ba9dafda6555e075b69d5a8..3d4f19df05d8a5d903bb56a17c8b4cd20939e99c 100644 (file)
 #include "llvm/Function.h"
 #include "llvm/Module.h"
 #include "llvm/Pass.h"
-#include "llvm/Support/Compiler.h"
 #include "llvm/Support/raw_ostream.h"
 using namespace llvm;
 
 namespace {
 
-  class VISIBILITY_HIDDEN PrintModulePass : public ModulePass {
+  class PrintModulePass : public ModulePass {
     raw_ostream *Out;       // raw_ostream to print on
     bool DeleteStream;      // Delete the ostream in our dtor?
   public: