forked from OSchip/llvm-project
Properly initialize the pImpl member of PassRegistry to zero.
llvm-svn: 113264
This commit is contained in:
parent
2bddd3442f
commit
29ed9459d0
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue