re PR java/4360 (libjava fails to compile on i686-pc-linux-gnu (AttributedString))
2001-09-22 Alexandre Petit-Bianco <apbianco@redhat.com> * decl.c (init_decl_processing): Fixed typo in predef_filenames last three initializations. Fixes PR java/4360. ( http://gcc.gnu.org/ml/gcc-patches/2001-09/msg00903.html ) From-SVN: r45756
This commit is contained in:
parent
0c96e96535
commit
f6a67a813e
2 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-09-22 Alexandre Petit-Bianco <apbianco@redhat.com>
|
||||
|
||||
* decl.c (init_decl_processing): Fixed typo in predef_filenames
|
||||
last three initializations. Fixes PR java/4360.
|
||||
|
||||
2001-09-21 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* class.c (get_dispatch_table): Handle function descriptors.
|
||||
|
|
|
@ -563,9 +563,11 @@ init_decl_processing ()
|
|||
predef_filenames [4] = get_identifier ("java/lang/String.java");
|
||||
predef_filenames [5] = get_identifier ("java/lang/Throwable.java");
|
||||
predef_filenames [6] = get_identifier ("gnu/gcj/RawData.java");
|
||||
predef_filenames [7] = get_identifier ("java/lang/Exception");
|
||||
predef_filenames [8] = get_identifier ("java/lang/ClassNotFoundException");
|
||||
predef_filenames [9] = get_identifier ("java/lang/NoClassDefFoundError");
|
||||
predef_filenames [7] = get_identifier ("java/lang/Exception.java");
|
||||
predef_filenames [8] =
|
||||
get_identifier ("java/lang/ClassNotFoundException.java");
|
||||
predef_filenames [9] =
|
||||
get_identifier ("java/lang/NoClassDefFoundError.java");
|
||||
|
||||
methodtable_type = make_node (RECORD_TYPE);
|
||||
layout_type (methodtable_type);
|
||||
|
|
Loading…
Add table
Reference in a new issue