re PR java/5876 (jc1 crashes when targeting mingw32)
2002-03-18 Alexandre Petit-Bianco <apbianco@redhat.com> * builtins.c (define_builtin): Do nothing if `type' is null. Fixes PR java/5876. From-SVN: r50990
This commit is contained in:
parent
1bfbbbcf9d
commit
c2d8e20aff
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-03-18 Alexandre Petit-Bianco <apbianco@redhat.com>
|
||||
|
||||
* builtins.c (define_builtin): Do nothing if `type' is null.
|
||||
Fixes PR java/5876.
|
||||
|
||||
2002-03-18 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
|
||||
|
||||
* parse.y (parser_check_super_interface): Fix error message
|
||||
|
|
|
@ -200,7 +200,7 @@ define_builtin (val, name, class, type, fallback_p)
|
|||
{
|
||||
tree decl;
|
||||
|
||||
if (! name)
|
||||
if (! name || ! type)
|
||||
return;
|
||||
|
||||
if (strncmp (name, "__builtin_", strlen ("__builtin_")) != 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue