[llvm-commits] [llvm] r44709 - /llvm/trunk/include/llvm/ADT/APInt.h
Chris Lattner
sabre at nondot.org
Sat Dec 8 11:01:44 PST 2007
Author: lattner
Date: Sat Dec 8 13:01:44 2007
New Revision: 44709
URL: http://llvm.org/viewvc/llvm-project?rev=44709&view=rev
Log:
eliminate dependency on Bitcode headers.
Modified:
llvm/trunk/include/llvm/ADT/APInt.h
Modified: llvm/trunk/include/llvm/ADT/APInt.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/APInt.h?rev=44709&r1=44708&r2=44709&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/APInt.h (original)
+++ llvm/trunk/include/llvm/ADT/APInt.h Sat Dec 8 13:01:44 2007
@@ -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;
More information about the llvm-commits
mailing list