summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-12-08 19:01:44 +0000
committerChris Lattner <sabre@nondot.org>2007-12-08 19:01:44 +0000
commit73481e04da1573d10c72982cfba0716c39902502 (patch)
treef37b34caed493954e2d27fab9b5d840fdccc5eb9 /include
parent065d97e7fc0b39264586e4f812955078194c595a (diff)
downloadllvm-73481e04da1573d10c72982cfba0716c39902502.tar.gz
llvm-73481e04da1573d10c72982cfba0716c39902502.tar.bz2
llvm-73481e04da1573d10c72982cfba0716c39902502.tar.xz
eliminate dependency on Bitcode headers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44709 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/ADT/APInt.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h
index 7e06d3d1ae..a9e051df21 100644
--- a/include/llvm/ADT/APInt.h
+++ b/include/llvm/ADT/APInt.h
@@ -16,14 +16,15 @@
#define LLVM_APINT_H
#include "llvm/Support/DataTypes.h"
-#include "llvm/Bitcode/SerializationFwd.h"
#include <cassert>
#include <string>
#define COMPILE_TIME_ASSERT(cond) extern int CTAssert[(cond) ? 1 : -1]
namespace llvm {
-
+ class Serializer;
+ class Deserializer;
+
/* An unsigned host type used as a single part of a multi-part
bignum. */
typedef uint64_t integerPart;