From: Mark Kettenis Date: Sun, 9 Sep 2012 21:56:40 +0000 (+0000) Subject: * config/openbsd-stdint.h (INTMAX_TYPE, UINTMAX_TYPE): Define. X-Git-Tag: misc/gccgo-go1_1_2~970 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82a0aae0ff43fb77df886ebe26390e1e647e4433;p=thirdparty%2Fgcc.git * config/openbsd-stdint.h (INTMAX_TYPE, UINTMAX_TYPE): Define. From-SVN: r191120 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3307a6688ac8..ec97f3aae3a3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2012-09-09 Mark Kettenis + + * config/openbsd-stdint.h (INTMAX_TYPE, UINTMAX_TYPE): Define. + 2012-09-09 Jan Hubicka * passes.c (ipa_write_summaries_1): Set state; diff --git a/gcc/config/openbsd-stdint.h b/gcc/config/openbsd-stdint.h index ab1f9cfffc61..a6da1da191f2 100644 --- a/gcc/config/openbsd-stdint.h +++ b/gcc/config/openbsd-stdint.h @@ -26,6 +26,9 @@ #define UINT_FAST16_TYPE "unsigned int" #define UINT_FAST32_TYPE "unsigned int" #define UINT_FAST64_TYPE "long long unsigned int" + +#define INTMAX_TYPE "long long int" +#define UINTMAX_TYPE "long long unsigned int" #define INTPTR_TYPE "long int" #define UINTPTR_TYPE "long unsigned int"