diff options
| author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-19 05:08:31 +0000 |
|---|---|---|
| committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-19 05:08:31 +0000 |
| commit | 7230239553052ecd02894d6ce9f21000fccbafdd (patch) | |
| tree | 7197e8324f262a7d31164a34efddb4c7aaece4b9 /llvm | |
| parent | 2a7f8a94f4bfb0e387f05e576deb01117353caec (diff) | |
| download | bcm5719-llvm-7230239553052ecd02894d6ce9f21000fccbafdd.tar.gz bcm5719-llvm-7230239553052ecd02894d6ce9f21000fccbafdd.zip | |
Add missing data types for VC++
llvm-svn: 19680
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Support/DataTypes.h.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/DataTypes.h.in b/llvm/include/llvm/Support/DataTypes.h.in index a19ce290373..69255c45668 100644 --- a/llvm/include/llvm/Support/DataTypes.h.in +++ b/llvm/include/llvm/Support/DataTypes.h.in @@ -69,9 +69,13 @@ typedef u_int64_t uint64_t; #include <stddef.h> typedef __int64 int64_t; typedef unsigned __int64 uint64_t; -typedef signed int int32_t; +typedef signed int int32_t; typedef unsigned int uint32_t; -typedef signed int ssize_t; +typedef short int16_t; +typedef unsigned short uint16_t; +typedef signed char int8_t; +typedef unsigned char uint8_t; +typedef signed int ssize_t; #define INT8_MAX 127 #define INT8_MIN -128 #define UINT8_MAX 255 |

