summaryrefslogtreecommitdiff
path: root/include/llvm/Support/DataTypes.h.in
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-10-25 18:40:47 +0000
committerChris Lattner <sabre@nondot.org>2004-10-25 18:40:47 +0000
commit7a36ae8b0103088328e3a4992ac08b3dce312248 (patch)
tree1518371b0efd8eed222809ba9797debcd15592a0 /include/llvm/Support/DataTypes.h.in
parent219c1418153d9b85035957b0e15af75e42f65854 (diff)
downloadllvm-7a36ae8b0103088328e3a4992ac08b3dce312248.tar.gz
llvm-7a36ae8b0103088328e3a4992ac08b3dce312248.tar.bz2
llvm-7a36ae8b0103088328e3a4992ac08b3dce312248.tar.xz
Patch to support MSVC better, contributed by Morten Ofstad
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/DataTypes.h.in')
-rw-r--r--include/llvm/Support/DataTypes.h.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Support/DataTypes.h.in b/include/llvm/Support/DataTypes.h.in
index 2ac1e1721e..f5467b2220 100644
--- a/include/llvm/Support/DataTypes.h.in
+++ b/include/llvm/Support/DataTypes.h.in
@@ -84,6 +84,9 @@ typedef signed int ssize_t;
#if !defined(INT64_MAX)
# define INT64_MAX 9223372036854775807LL
#endif
+#if !defined(INT64_MIN)
+# define INT64_MIN ((-INT64_MAX)-1)
+#endif
#if !defined(UINT64_MAX)
# define UINT64_MAX 0xffffffffffffffffULL
#endif