diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-27 16:19:44 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-27 16:19:44 +0000 |
commit | a8b8332e81cb2eb1dfed70ff507e752f7fef5479 (patch) | |
tree | 9703df89d04e78655f9b5ca76e36b8938e5d2daf /lib/CodeGen/PseudoSourceValue.cpp | |
parent | 833ddf84302aa08d9157b28d37c40ae134a74da6 (diff) |
Remove the std::ostream form of PseudoSourceValue's print,
which isn't needed anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55419 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PseudoSourceValue.cpp')
-rw-r--r-- | lib/CodeGen/PseudoSourceValue.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/PseudoSourceValue.cpp b/lib/CodeGen/PseudoSourceValue.cpp index 8c9de81059..5247906c46 100644 --- a/lib/CodeGen/PseudoSourceValue.cpp +++ b/lib/CodeGen/PseudoSourceValue.cpp @@ -57,9 +57,6 @@ namespace { virtual bool isConstant(const MachineFrameInfo *MFI) const; - virtual void print(std::ostream &OS) const { - OS << "FixedStack" << FI; - } virtual void print(raw_ostream &OS) const { OS << "FixedStack" << FI; } |