Drop redundant print impl.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74553 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andreas Bolka 2009-06-30 21:33:56 +00:00
parent c39f44b521
commit f67799501c

View File

@ -48,9 +48,6 @@ namespace llvm {
void print(raw_ostream&, const Module* = 0) const;
virtual void print(std::ostream&, const Module* = 0) const;
void print(std::ostream *OS, const Module *M = 0) const {
if (OS) print(*OS, M);
}
}; // class LoopDependenceAnalysis