aboutsummaryrefslogtreecommitdiff
path: root/gcc/cccp.c
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1993-01-18 10:47:57 -0800
committerJim Wilson <wilson@gcc.gnu.org>1993-01-18 10:47:57 -0800
commit8da4cd09fb4a6d5aa7d755ed0ee1b72a4dba62ed (patch)
tree85d674b341ce02791005b423b5ea549844c5ae47 /gcc/cccp.c
parentb46db6e4f48f2a4f1cf61373fd82be6fd8bc48aa (diff)
downloadgcc-8da4cd09fb4a6d5aa7d755ed0ee1b72a4dba62ed.zip
gcc-8da4cd09fb4a6d5aa7d755ed0ee1b72a4dba62ed.tar.gz
gcc-8da4cd09fb4a6d5aa7d755ed0ee1b72a4dba62ed.tar.bz2
(initialize_builtins): Add uses of new macros
NO_BUILTIN_SIZE_TYPE and NO_BUILTIN_PTRDIFF_TYPE. From-SVN: r3266
Diffstat (limited to 'gcc/cccp.c')
-rw-r--r--gcc/cccp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index 6a7eb59..aa04291 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)