summaryrefslogtreecommitdiff
path: root/lib/CodeGen/PseudoSourceValue.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-08-27 16:19:44 +0000
committerDan Gohman <gohman@apple.com>2008-08-27 16:19:44 +0000
commita8b8332e81cb2eb1dfed70ff507e752f7fef5479 (patch)
tree9703df89d04e78655f9b5ca76e36b8938e5d2daf /lib/CodeGen/PseudoSourceValue.cpp
parent833ddf84302aa08d9157b28d37c40ae134a74da6 (diff)
downloadllvm-a8b8332e81cb2eb1dfed70ff507e752f7fef5479.tar.gz
llvm-a8b8332e81cb2eb1dfed70ff507e752f7fef5479.tar.bz2
llvm-a8b8332e81cb2eb1dfed70ff507e752f7fef5479.tar.xz
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.cpp3
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;
}