diff --git a/include/llvm/Module.h b/include/llvm/Module.h index 61ba60f08ed..8b4a50a4096 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -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;