Make PassInfo noncopyable.

llvm-svn: 51085
This commit is contained in:
Dan Gohman 2008-05-14 00:39:39 +00:00
parent a37cf46c87
commit 1453fd6de6
1 changed files with 4 additions and 0 deletions

View File

@ -137,6 +137,10 @@ public:
protected: protected:
void registerPass(); void registerPass();
void unregisterPass(); void unregisterPass();
private:
void operator=(const PassInfo &); // do not implement
PassInfo(const PassInfo &); // do not implement
}; };