From 5fe5c2100b1835507b8a3253ae65188d3f85b467 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Thu, 27 Aug 1992 03:26:06 +0000 Subject: [PATCH] (init_decl_processing): Fix type of __builtin_constant_p. From-SVN: r1970 --- gcc/c-decl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 9f70713e57e..cebbbd82c18 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -2686,8 +2686,7 @@ init_decl_processing () endlink)))); /* ``integer_tpe_node'' misspelling corrected: North-Keys 30 Mar 91 */ - builtin_function ("__builtin_constant_p", - build_function_type (integer_type_node, endlink), + builtin_function ("__builtin_constant_p", int_ftype_int, BUILT_IN_CONSTANT_P, NULL_PTR); builtin_function ("__builtin_return_address", -- 2.30.2