aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-25 05:59:50 +0000
committerChris Lattner <sabre@nondot.org>2006-05-25 05:59:50 +0000
commit32cdb6617ee317a218976e7a6c063ca36afab760 (patch)
tree497fb0aa5cb1de7b20e9fe958e8c613be4810559
parent32fe1035a708d16d67e632f21d8ec2d1b437a225 (diff)
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
-rw-r--r--include/llvm/Support/SlowOperationInformer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/SlowOperationInformer.h b/include/llvm/Support/SlowOperationInformer.h
index 80ece41834..da6bcbbc61 100644
--- a/include/llvm/Support/SlowOperationInformer.h
+++ b/include/llvm/Support/SlowOperationInformer.h
@@ -33,6 +33,7 @@
#include <string>
#include <cassert>
+#include "llvm/Support/DataTypes.h"
namespace llvm {
class SlowOperationInformer {