aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Pinski <pinskia@physics.uc.edu>2004-06-27 20:47:14 +0000
committerAndrew Pinski <pinskia@gcc.gnu.org>2004-06-27 13:47:14 -0700
commit1f4f60fc3f9c131d74d60b66d77b23faeed8526c (patch)
tree2b3d14269d5c5a94deec0e880de6e0fc394c5e66
parent01036503d173b294661f06aff8146b0e10c673b1 (diff)
downloadgcc-1f4f60fc3f9c131d74d60b66d77b23faeed8526c.zip
gcc-1f4f60fc3f9c131d74d60b66d77b23faeed8526c.tar.gz
gcc-1f4f60fc3f9c131d74d60b66d77b23faeed8526c.tar.bz2
re PR c/14963 (Unknown types cause ICE in function declarations)
2004-06-27 Andrew Pinski <pinskia@physics.uc.edu> PR c/14963 * c-decl.c (start_decl): Check for null types. From-SVN: r83744
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/c-decl.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1fe1b43..8ea4cd7 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-06-27 Andrew Pinski <pinskia@physics.uc.edu>
+
+ PR c/14963
+ * c-decl.c (start_decl): Check for null types.
+
2004-06-27 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p):
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;
}