diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-03 00:55:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-03 00:55:04 +0000 |
commit | 35e86af8e5cc76b94690d8e06517b7daa254d314 (patch) | |
tree | d626bdd14c6eae600dc3a91c70322482e874f685 /lib/Target/TargetData.cpp | |
parent | 7896c9f436a4eda5ec15e882a7505ba482a2fcd0 (diff) |
remove some dead std::ostream using code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90366 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetData.cpp')
-rw-r--r-- | lib/Target/TargetData.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/Target/TargetData.cpp b/lib/Target/TargetData.cpp index a4b58a070c..e482e201f2 100644 --- a/lib/Target/TargetData.cpp +++ b/lib/Target/TargetData.cpp @@ -29,7 +29,6 @@ #include "llvm/ADT/DenseMap.h" #include <algorithm> #include <cstdlib> -#include <ostream> using namespace llvm; // Handle the Pass registration stuff necessary to use TargetData's. @@ -118,14 +117,6 @@ TargetAlignElem::operator==(const TargetAlignElem &rhs) const { && TypeBitWidth == rhs.TypeBitWidth); } -std::ostream & -TargetAlignElem::dump(std::ostream &os) const { - return os << AlignType - << TypeBitWidth - << ":" << (int) (ABIAlign * 8) - << ":" << (int) (PrefAlign * 8); -} - const TargetAlignElem TargetData::InvalidAlignmentElem = TargetAlignElem::get((AlignTypeEnum) -1, 0, 0, 0); |