Do not replace ostream << Module*, only ostream << Module&.

llvm-svn: 20157
This commit is contained in:
Chris Lattner 2005-02-13 19:15:01 +00:00
parent 6983f5d2ed
commit 5881b91bd7
1 changed files with 0 additions and 5 deletions

View File

@ -263,11 +263,6 @@ public:
void dropAllReferences();
};
inline std::ostream &operator<<(std::ostream &O, const Module *M) {
M->print(O);
return O;
}
inline std::ostream &operator<<(std::ostream &O, const Module &M) {
M.print(O);
return O;