summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm-c
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2018-04-02 13:22:26 +0000
committerNico Weber <nicolasweber@gmx.de>2018-04-02 13:22:26 +0000
commitdce9a72d9871fb5bf8094c89306be46dfbffd65e (patch)
tree77d0c66ece677075290db2600a4ac017051ec9fb /llvm/include/llvm-c
parent6d48493817ebef6f69bb2b138e098b192d45ce1d (diff)
downloadbcm5719-llvm-dce9a72d9871fb5bf8094c89306be46dfbffd65e.tar.gz
bcm5719-llvm-dce9a72d9871fb5bf8094c89306be46dfbffd65e.zip
Assume existence of inttypes.h and stdint.h in DataTypes.h.
These should exist in all toolchains LLVM supports nowadays. Enables making DataTypes.h a regular header instead of a .h.cmake file and allows deleting a bunch of cmake goop (which should also speed up cmake configure time a bit). All the code this removes is 9+ years old. https://reviews.llvm.org/D45155 llvm-svn: 328970
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r--llvm/include/llvm-c/DataTypes.h (renamed from llvm/include/llvm-c/DataTypes.h.cmake)45
1 files changed, 0 insertions, 45 deletions
diff --git a/llvm/include/llvm-c/DataTypes.h.cmake b/llvm/include/llvm-c/DataTypes.h
index 19799ef93ff..7081c83ffc2 100644
--- a/llvm/include/llvm-c/DataTypes.h.cmake
+++ b/llvm/include/llvm-c/DataTypes.h
@@ -24,34 +24,14 @@
#ifndef LLVM_C_DATATYPES_H
#define LLVM_C_DATATYPES_H
-#cmakedefine HAVE_INTTYPES_H ${HAVE_INTTYPES_H}
-#cmakedefine HAVE_STDINT_H ${HAVE_STDINT_H}
-#cmakedefine HAVE_UINT64_T ${HAVE_UINT64_T}
-#cmakedefine HAVE_U_INT64_T ${HAVE_U_INT64_T}
-
#ifdef __cplusplus
#include <cmath>
#else
#include <math.h>
#endif
-#ifdef __cplusplus
-#include <cinttypes>
-#else
-#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
-#endif
-#endif
-
-#ifdef __cplusplus
-#include <cstdint>
-#else
-#ifdef HAVE_STDINT_H
#include <stdint.h>
-#else
-#error "Compiler must provide an implementation of stdint.h"
-#endif
-#endif
#ifndef _MSC_VER
@@ -74,15 +54,6 @@
#undef INT64_MIN
#endif
-/* Handle incorrect definition of uint64_t as u_int64_t */
-#ifndef HAVE_UINT64_T
-#ifdef HAVE_U_INT64_T
-typedef u_int64_t uint64_t;
-#else
-# error "Don't have a definition for uint64_t on this platform"
-#endif
-#endif
-
#else /* _MSC_VER */
#ifdef __cplusplus
#include <cstddef>
@@ -99,22 +70,6 @@ typedef signed __int64 ssize_t;
typedef signed int ssize_t;
#endif /* _WIN64 */
-#ifndef HAVE_INTTYPES_H
-#define PRId64 "I64d"
-#define PRIi64 "I64i"
-#define PRIo64 "I64o"
-#define PRIu64 "I64u"
-#define PRIx64 "I64x"
-#define PRIX64 "I64X"
-
-#define PRId32 "d"
-#define PRIi32 "i"
-#define PRIo32 "o"
-#define PRIu32 "u"
-#define PRIx32 "x"
-#define PRIX32 "X"
-#endif /* HAVE_INTTYPES_H */
-
#endif /* _MSC_VER */
/* Set defaults for constants which we cannot find. */
OpenPOWER on IntegriCloud