From 8da4cd09fb4a6d5aa7d755ed0ee1b72a4dba62ed Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 18 Jan 1993 10:47:57 -0800 Subject: [PATCH] (initialize_builtins): Add uses of new macros NO_BUILTIN_SIZE_TYPE and NO_BUILTIN_PTRDIFF_TYPE. From-SVN: r3266 --- gcc/cccp.c | 4 ++++ 1 file changed, 4 insertions(+) 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) -- 2.30.2