summaryrefslogtreecommitdiffstats
path: root/llvm/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-04 20:06:33 +0000
committerChris Lattner <sabre@nondot.org>2004-06-04 20:06:33 +0000
commita36804a2ffe3b86c491b16480762610d7296711e (patch)
tree7e7d631937f43c0d38b12cb399824722401c8fa5 /llvm/include
parent49dc039eebeffd09569edad4d26fa6479e2591c2 (diff)
downloadbcm5719-llvm-a36804a2ffe3b86c491b16480762610d7296711e.tar.gz
bcm5719-llvm-a36804a2ffe3b86c491b16480762610d7296711e.zip
Add ssize_t for VC++
llvm-svn: 14018
Diffstat (limited to 'llvm/include')
-rw-r--r--llvm/include/Support/DataTypes.h.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/include/Support/DataTypes.h.in b/llvm/include/Support/DataTypes.h.in
index 895aa93509c..0690ee7e58f 100644
--- a/llvm/include/Support/DataTypes.h.in
+++ b/llvm/include/Support/DataTypes.h.in
@@ -39,8 +39,9 @@
// built-in data types.
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
-typedef int int32_t;
-typedef unsigned uint32_t;
+typedef signed int int32_t;
+typedef unsigned int uint32_t;
+typedef signed int ssize_t;
#endif
#if !defined(INT64_MAX)
OpenPOWER on IntegriCloud