[llvm-commits] CVS: llvm/include/llvm/Support/DataTypes.h.in
Jeff Cohen
jeffc at jolt-lang.org
Tue Jan 18 21:08:42 PST 2005
Changes in directory llvm/include/llvm/Support:
DataTypes.h.in updated: 1.18 -> 1.19
---
Log message:
Add missing data types for VC++
---
Diffs of the changes: (+6 -2)
Index: llvm/include/llvm/Support/DataTypes.h.in
diff -u llvm/include/llvm/Support/DataTypes.h.in:1.18 llvm/include/llvm/Support/DataTypes.h.in:1.19
--- llvm/include/llvm/Support/DataTypes.h.in:1.18 Thu Dec 16 12:47:17 2004
+++ llvm/include/llvm/Support/DataTypes.h.in Tue Jan 18 23:08:31 2005
@@ -69,9 +69,13 @@
#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
More information about the llvm-commits
mailing list