diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-23 23:11:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 23:11:28 +0000 |
commit | 91021d339004ff5a64c3c9614cff8966899c0c99 (patch) | |
tree | 7435ec781c97edc9bf7a3ef76d57793d15a4d11f /include/llvm/ADT/APInt.h | |
parent | 2a8d194cce8ba80ee99484913d50a529791546e1 (diff) | |
download | external_llvm-91021d339004ff5a64c3c9614cff8966899c0c99.zip external_llvm-91021d339004ff5a64c3c9614cff8966899c0c99.tar.gz external_llvm-91021d339004ff5a64c3c9614cff8966899c0c99.tar.bz2 |
remove the dead std::ostream APInt inserter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79875 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/APInt.h')
-rw-r--r-- | include/llvm/ADT/APInt.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index 5b69bc2..6c418bd 100644 --- a/include/llvm/ADT/APInt.h +++ b/include/llvm/ADT/APInt.h @@ -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. |