Add in missing #defines for _OpenBSD_ systems.
authorReid Spencer <rspencer@reidspencer.com>
Thu, 20 Apr 2006 00:18:39 +0000 (00:18 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 20 Apr 2006 00:18:39 +0000 (00:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27850 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/DataTypes.h.in

index f16a2cd9a29edd292db4f37b01e62c8d3c6adc64..26a0873151b8e2e07cdda45260a7f008a6d5a9dd 100644 (file)
@@ -63,6 +63,18 @@ typedef u_int64_t uint64_t;
 #endif
 #endif
 
+#ifdef _OpenBSD_
+#define INT8_MAX 127
+#define INT8_MIN -128
+#define UINT8_MAX 255
+#define INT16_MAX 32767
+#define INT16_MIN -32768
+#define UINT16_MAX 65535
+#define INT32_MAX 2147483647
+#define INT32_MIN -2147483648
+#define UINT32_MAX 4294967295U
+#endif
+
 #else /* _MSC_VER */
 // Visual C++ doesn't provide standard integer headers, but it does provide
 // built-in data types.