From: Jim Wilson Date: Mon, 18 Jan 1993 18:47:57 +0000 (-0800) Subject: (initialize_builtins): Add uses of new macros X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8da4cd09fb4a6d5aa7d755ed0ee1b72a4dba62ed;p=gcc.git (initialize_builtins): Add uses of new macros NO_BUILTIN_SIZE_TYPE and NO_BUILTIN_PTRDIFF_TYPE. From-SVN: r3266 --- diff --git a/gcc/cccp.c b/gcc/cccp.c index 6a7eb59f647..aa0429175f1 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -8295,8 +8295,12 @@ initialize_builtins (inp, outp) install ("__BASE_FILE__", -1, T_BASE_FILE, 0, 0, -1); install ("__INCLUDE_LEVEL__", -1, T_INCLUDE_LEVEL, 0, 0, -1); install ("__VERSION__", -1, T_VERSION, 0, 0, -1); +#ifndef NO_BUILTIN_SIZE_TYPE install ("__SIZE_TYPE__", -1, T_SIZE_TYPE, 0, 0, -1); +#endif +#ifndef NO_BUILTIN_PTRDIFF_TYPE install ("__PTRDIFF_TYPE__ ", -1, T_PTRDIFF_TYPE, 0, 0, -1); +#endif install ("__WCHAR_TYPE__", -1, T_WCHAR_TYPE, 0, 0, -1); install ("__TIME__", -1, T_TIME, 0, 0, -1); if (!traditional)