diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index 7e06d3d1aec..a9e051df21a 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 #include #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;