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 | a5b15bd09b7718351a56b103871d1c046c068aa6 (patch) | |
tree | 73bfe30537931f3df7bbb21f7b8fcf6af4cc7c32 /llvm/lib/CodeGen/PseudoSourceValue.cpp | |
parent | 6d153b02c9df026c005900c5321bcf3857197a7c (diff) | |
download | bcm5719-llvm-a5b15bd09b7718351a56b103871d1c046c068aa6.tar.gz bcm5719-llvm-a5b15bd09b7718351a56b103871d1c046c068aa6.zip |
Remove the std::ostream form of PseudoSourceValue's print,
which isn't needed anymore.
llvm-svn: 55419
Diffstat (limited to 'llvm/lib/CodeGen/PseudoSourceValue.cpp')
-rw-r--r-- | llvm/lib/CodeGen/PseudoSourceValue.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/PseudoSourceValue.cpp b/llvm/lib/CodeGen/PseudoSourceValue.cpp index 8c9de810597..5247906c46d 100644 --- a/llvm/lib/CodeGen/PseudoSourceValue.cpp +++ b/llvm/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; } |