Properly initialize the pImpl member of PassRegistry to zero.
[oota-llvm.git] / include / llvm / PassRegistry.h
index 1fb11ed64c1821a68e2cb387906bfec0f75f27ce..809dba0bc0dc79be5c2b84d2055e2d1d3e0d6b59 100644 (file)
@@ -36,6 +36,8 @@ class PassRegistry {
   void *getImpl() const;
    
 public:
+  PassRegistry() : pImpl(0) { }
+  
   /// getPassRegistry - Access the global registry object, which is 
   /// automatically initialized at application launch and destroyed by
   /// llvm_shutdown.