[llvm-commits] CVS: llvm/include/Support/DataTypes.h.in

Chris Lattner lattner at cs.uiuc.edu
Fri Jun 4 15:11:09 PDT 2004


Changes in directory llvm/include/Support:

DataTypes.h.in updated: 1.3 -> 1.4

---
Log message:

Add ssize_t for VC++


---
Diffs of the changes:  (+3 -2)

Index: llvm/include/Support/DataTypes.h.in
diff -u llvm/include/Support/DataTypes.h.in:1.3 llvm/include/Support/DataTypes.h.in:1.4
--- llvm/include/Support/DataTypes.h.in:1.3	Fri Jun  4 14:11:04 2004
+++ llvm/include/Support/DataTypes.h.in	Fri Jun  4 15:06:33 2004
@@ -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)





More information about the llvm-commits mailing list