From: Chris Lattner Date: Thu, 25 May 2006 05:59:50 +0000 (+0000) Subject: Fix breakage on platforms where string/cassert don't pull in int64_t. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=32cdb6617ee317a218976e7a6c063ca36afab760;p=oota-llvm.git Fix breakage on platforms where string/cassert don't pull in int64_t. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28464 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/SlowOperationInformer.h b/include/llvm/Support/SlowOperationInformer.h index 80ece41834f..da6bcbbc618 100644 --- a/include/llvm/Support/SlowOperationInformer.h +++ b/include/llvm/Support/SlowOperationInformer.h @@ -33,6 +33,7 @@ #include #include +#include "llvm/Support/DataTypes.h" namespace llvm { class SlowOperationInformer {