remove the dead std::ostream APInt inserter

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79875 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2009-08-23 23:11:28 +00:00
parent 2a8d194cce
commit 91021d3390
2 changed files with 4 additions and 13 deletions

View File

@@ -15,7 +15,6 @@
#ifndef LLVM_APINT_H
#define LLVM_APINT_H
#include "llvm/Support/DataTypes.h"
#include "llvm/Support/MathExtras.h"
#include <cassert>
#include <climits>
@@ -32,8 +31,8 @@ namespace llvm {
template<typename T>
class SmallVectorImpl;
/* An unsigned host type used as a single part of a multi-part
bignum. */
// An unsigned host type used as a single part of a multi-part
// bignum.
typedef uint64_t integerPart;
const unsigned int host_char_bit = 8;
@@ -1426,8 +1425,6 @@ inline raw_ostream &operator<<(raw_ostream &OS, const APInt &I) {
return OS;
}
std::ostream &operator<<(std::ostream &o, const APInt &I);
namespace APIntOps {
/// @brief Determine the smaller of two APInts considered to be signed.