From 1f4f60fc3f9c131d74d60b66d77b23faeed8526c Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Sun, 27 Jun 2004 20:47:14 +0000 Subject: re PR c/14963 (Unknown types cause ICE in function declarations) 2004-06-27 Andrew Pinski PR c/14963 * c-decl.c (start_decl): Check for null types. From-SVN: r83744 --- gcc/c-decl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/c-decl.c') diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 4591ec95..7a68adb 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -2715,7 +2715,7 @@ start_decl (tree declarator, tree declspecs, int initialized, tree attributes) for (; args; args = TREE_CHAIN (args)) { tree type = TREE_TYPE (args); - if (INTEGRAL_TYPE_P (type) + if (type && INTEGRAL_TYPE_P (type) && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)) DECL_ARG_TYPE (args) = integer_type_node; } -- cgit v1.1