source: trunk/src/gcc/libobjc/ChangeLog@ 1444

Last change on this file since 1444 was 1392, checked in by bird, 21 years ago

This commit was generated by cvs2svn to compensate for changes in r1391,
which included commits to RCS files with non-trunk default branches.

  • Property cvs2svn:cvs-rev set to 1.1.1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 17.8 KB
Line 
12004-02-14 Release Manager
2
3 * GCC 3.3.3 Released.
4
52003-12-01 Zack Weinberg <zack@codesourcery.com>
6
7 PR 11433
8 * Protocol.m (descriptionForInstanceMethod): Don't dereference
9 instance_methods if it's NULL.
10 (descriptionForClassMethod): Likewise for class_methods.
11
122003-10-16 Release Manager
13
14 * GCC 3.3.2 Released.
15
162003-09-09 Alan Modra <amodra@bigpond.net.au>
17
18 * configure: Regenerate.
19
202003-08-04 Release Manager
21
22 * GCC 3.3.1 Released.
23
242003-08-04 Release Manager
25
26 * GCC 3.3.1 Released.
27
282003-05-13 Release Manager
29
30 * GCC 3.3 Released.
31
322003-05-13 Release Manager
33
34 * GCC 3.3 Released.
35
362003-05-13 Release Manager
37
38 * GCC 3.3 Released.
39
402003-02-20 Alexandre Oliva <aoliva@redhat.com>
41
42 * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
43 config.status.
44 * configure: Rebuilt.
45
462003-01-27 Alexandre Oliva <aoliva@redhat.com>
47
48 * aclocal.m4 (glibcpp_toolexeclibdir): Instead of
49 $(MULTISUBDIR), use `$CC -print-multi-os-directory`, unless
50 version_specific_libs is enabled.
51 * configure: Rebuilt.
52
532003-01-26 Christian Cornelssen <ccorn@cs.tu-berlin.de>
54
55 * Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR.
56 (install-libs, install-headers): Prepend $(DESTDIR) to
57 destination paths in all (un)installation commands.
58
592002-09-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
60
61 * Makefile.in (all): Fix multilib parallel build.
62
63Thu Sep 12 12:44:37 2002 Nicola Pero <n.pero@mi.flashnet.it>
64
65 * sendmsg.c (nil_method): Declare not to take a variable number of
66 args.
67 (objc_msg_lookup): Cast nil_method to IMP before returning it.
68 (objc_msg_lookup_super): The same.
69
702002-09-10 Jan Hubicka <jh@suse.cz>
71
72 * nil_method.c (nil_method): No longer defined with variable
73 arguments.
74
752002-07-02 Rodney Brown <rbrown64@csc.com.au>
76
77 * objc/encoding.h: Fix formatting.
78 * objc/hash.h: Likewise.
79 * objc/objc-api.h: Likewise.
80 * objc/runtime.h: Likewise.
81 * objc/thr.h: Likewise.
82 * archive.c: Likewise.
83 * class.c: Likewise.
84 * encoding.c: Likewise.
85 * gc.c: Likewise.
86 * hash.c: Likewise.
87 * init.c: Likewise.
88 * misc.c: Likewise.
89 * nil_method.c: Likewise.
90 * objects.c: Likewise.
91 * sarray.c: Likewise.
92 * selector.c: Likewise.
93 * sendmsg.c: Likewise.
94 * thr-mach.c: Likewise.
95 * thr.c: Likewise.
96
972002-06-25 DJ Delorie <dj@redhat.com>
98
99 * aclocal.m4 (GLIBCPP_CONFIGURE): Split out
100 GLIBCPP_TOPREL_CONFIGURE.
101 * configure.in: Call it before AC_CANONICAL_SYSTEM.
102 * configure: Regenerate.
103
1042002-06-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
105
106 * Object.m (forward, read, write): Fix unused parameter warnings.
107 * encoding.c: Include <stdlib.h>.
108 (target_flags): Mark with attribute unused.
109 (atoi): Delete.
110 * runtime.h (__objc_selector_max_index): Change to unsigned int.
111 (__objc_generate_gc_type_description): Prototype.
112 * selector.c (__objc_selector_max_index): Change to unsigned int.
113
114Mon Jun 17 18:37:42 2002 Nicola Pero <n.pero@mi.flashnet.it>
115
116 * sendmsg.c (__objc_get_forward_imp): Fix warning by making sure
117 we always have a return value: if __objc_msg_forward does not
118 supply a forwarding implementation, return the default
119 __builtin_apply based one.
120
1212002-06-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
122
123 * Object.m: Fix signed/unsigned warning.
124 * Protocol.m: Likewise.
125 * archive.c: Always include stdlib.h.
126 (objc_read_short, objc_read_unsigned_short, objc_read_int,
127 objc_read_long, __objc_read_nbyte_uint, __objc_read_nbyte_ulong):
128 Fix signed/unsigned warning.
129 (objc_write_type, objc_read_type, objc_write_types,
130 objc_read_types): Ensure ctype 8-bit safety.
131 (__objc_no_write, __objc_no_read): Mark unused parameters.
132 * class.c (class_table_setup): Specify void arg.
133 * encoding.c (atoi, objc_sizeof_type, objc_alignof_type,
134 objc_skip_typespec, objc_skip_offset,
135 objc_layout_structure_next_member): Ensure ctype 8-bit safety.
136 (objc_layout_structure_next_member): Ensure variables are
137 initialized.
138 * gc.c (__objc_generate_gc_type_description,
139 class_ivar_set_gcinvisible): Mark unused parameters.
140 * init.c (__objc_send_load, __objc_destroy_class_tree_node): Mark
141 unused parameters.
142 (__objc_init_protocols) Fix signed/unsigned warning.
143 * nil_method.c (nil_method): Mark unused parameters.
144 * thr.h (objc_thread_callback): Specify void arg.
145 * sarray.c (sarray_new, sarray_realloc, sarray_free): Fix
146 signed/unsigned warning.
147 (sarray_free): Fix formatting.
148 * selector.c (sel_types_match): Ensure ctype 8-bit safety.
149 * sendmsg.c (__objc_init_install_dtable) Mark unused parameters.
150
1512002-06-09 Andreas Jaeger <aj@suse.de>
152
153 * encoding.c (objc_layout_structure_next_member): Remove unused
154 variable.
155
1562002-05-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
157
158 * Makefile.in (SHELL): Set to @SHELL@.
159 (WARN_CFLAGS): New.
160 (ALL_CFLAGS): Add $(WARN_CFLAGS).
161
1622002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
163
164 * aclocal.m4: Allow for PWDCMD to override hardcoded pwd.
165 * configure: Regenerate.
166
1672002-05-08 Alexandre Oliva <aoliva@redhat.com>
168
169 * configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
170 script entry, and set LD to it when configuring multilibs.
171 * configure: Rebuilt.
172
1732002-04-19 David O'Brien <obrien@FreeBSD.org>
174
175 * encoding.c (MAX, MIN, ROUNDING): #undef before defining.
176
1772002-04-09 Hans-Peter Nilsson <hp@bitrange.com>
178
179 PR objc/6107
180 * objc/objc-api.h (struct objc_protocol_list): Change type of
181 member count from int to size_t.
182
1832002-02-11 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
184
185 PR libobjc/4039
186 * aclocal.m4: Replace with version copied from libstdc++-v3.
187 * configure.in: Update for changes to aclocal and Makefile.
188 * configure: Regenerate.
189 * Makefile.in: Correct install of multilibs and shared libs, use
190 INSTALL_DATA for include files.
191
192Mon Dec 17 17:02:12 2001 Nicola Pero <nicola@brainstorm.co.uk>
193
194 * init.c (__objc_exec_class): Fixed bug in the loop on unclaimed
195 categories - when an unclaimed category was found, the loop was
196 doing two steps forward instead of one, so that in certain cases
197 it was failing to properly load all the categories. (Reported
198 with fix by Alexander Malmberg <alexander@malmberg.org>).
199
2002001-11-14 Aldy Hernandez <aldyh@redhat.com>
201
202 * encoding.c: Add target_flags.
203
2042001-11-07 Aldy Hernandez <aldyh@redhat.com>
205
206 * objc/objc-api.h (_C_VECTOR): New.
207
208 * encoding.c (VECTOR_TYPE): New.
209
210Mon Oct 29 21:29:21 2001 Nicola Pero <n.pero@mi.flashnet.it>
211
212 * class.c: Rewritten the class table to use optimized, lock-free
213 lookup. This more than doubles the speed of class method
214 invocations. (class_table_setup), (class_table_insert),
215 (class_table_replace), (class_table_get_safe),
216 (class_table_next), (class_table_print),
217 (class_table_print_histogram): New functions.
218 (__objc_init_class_tables): Use class_table_setup.
219 (__objc_add_class_to_hash): Use class_table_get_safe and
220 class_table_insert. (objc_lookup_class), (objc_get_class): Do not
221 assert the existence of the table; do not lock the runtime; use
222 class_table_get_safe. (objc_next_class): Use class_table_next.
223 (__objc_resolve_class_links): Use class_table_next.
224 (class_pose_as): Use class_table_replace.
225
2262001-09-10 Ovidiu Predescu <ovidiu@cup.hp.com>
227
228 * gc.c: Removed the DEBUG declaration.
229
230Wed Jul 18 12:48:56 2001 Nicola Pero <n.pero@mi.flashnet.it>
231
232 * thr.c (objc_mutex_lock): Invoke __objc_thread_id directly,
233 rather than through objc_thread_id, to save a function call.
234 (objc_mutex_trylock, objc_mutex_unlock, objc_condition_wait):
235 Ditto.
236
237Mon Jul 16 12:15:00 2001 Nicola Pero <n.pero@mi.flashnet.it>
238
239 * objc/objc-api.h (object_is_class): Fixed - buggy code was trying
240 to cast an id to a Class, which can not be done. Make the check
241 by using CLS_ISMETA on the class pointer instead.
242 (object_is_meta_class): Similar fix.
243
2442001-06-09 Alexandre Oliva <aoliva@redhat.com>, Stephen L Moshier <moshier@mediaone.net>
245
246 * configure.in (AC_EXEEXT): Work around in case it expands to
247 nothing, as in autoconf 2.50.
248 * acinclude.m4: Likewise.
249 * configure: Rebuilt.
250
2512001-06-08 Nicola Pero <n.pero@mi.flashnet.it>
252
253 * THREADS: Explain that when we compile libobjc inside GCC, we
254 always use thr-objc.c as a backend, which uses GCC's thread code.
255
2562001-06-06 Richard Frith-Macdonald <rrfm@gnu.org>
257
258 * init.c (__objc_send_message_in_list): When setting a new entry
259 in __objc_load_methods use the method IMP as key, but check to see
260 if the method is in the hashtable by looking at the IMP also.
261 Also ... call the method after adding it to the hashtable rather
262 than before ... thus preventing an obscure possibility of infinite
263 recursion if a +load method itself loads a subclass.
264
2652001-05-25 Ovidiu Predescu <ovidiu@cup.hp.com>
266
267 * init.c (__objc_send_message_in_list): When setting a new entry
268 in __objc_load_methods use the method name as key, not the method
269 IMP (reported by Richard Frith-Macdonald <richard@brainstorm.co.uk>).
270
2712001-05-09 Joseph S. Myers <jsm28@cam.ac.uk>
272
273 * objc-features.texi: Move to ../gcc/objc.texi.
274 * fdl.texi: Remove.
275 * Makefile.in: Don't generate documentation from
276 objc-features.texi.
277
2782001-05-01 Mark Mitchell <mark@codesourcery.com>
279
280 * fdl.texi: New file.
281 * objc-features.texi: Simplify.
282 * Makefile.in: Adjust accordingly.
283
2842001-04-30 Mark Mitchell <mark@codesourcery.com>
285
286 * objc-features.texi: Use the GFDL.
287
288Wed Mar 21 04:44:58 EST 2001 John Wehle (john@feith.com)
289
290 * encoding.c (REAL_TYPE): Define.
291
2922001-03-19 David Edelsohn <edelsohn@gnu.org>
293
294 * encoding.c (TYPE_MODE): Define.
295
2962001-03-14 Nicola Pero <n.pero@mi.flashnet.it>
297
298 * thr.c (objc_thread_add): New function.
299 (objc_thread_remove): Ditto.
300 * objc/thr.h: Declare them.
301 * libobjc.def: Mention them.
302
3032001-02-28 Ovidiu Predescu <ovidiu@cup.hp.com>
304
305 * objc-features.texi: Document the @compatibility_alias compiler
306 directive (description from Nicola Pero <n.pero@mi.flashnet.it>).
307
308Fri Feb 23 18:12:00 2001 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
309
310 * sendmsg.c (__objc_forward): Delete strlen() declaration.
311
3122001-02-08 Geoffrey Keating <geoffk@redhat.com>
313
314 * configure.in: Don't run AC_PROG_CC_WORKS or AC_EXEEXT, because
315 we're not interested in the result and they might fail.
316 * configure: Regenerated.
317
3182001-01-12 Joseph S. Myers <jsm28@cam.ac.uk>
319
320 * objc-features.texi: Use @email.
321
3222001-01-12 Joseph S. Myers <jsm28@cam.ac.uk>
323
324 * sendmsg.c (__objc_print_dtable_stats): Don't use #ifdef inside
325 printf.
326
3272000-01-11 Richard Earnshaw <rearnsha@arm.com>
328
329 * encoding.c (STRUCTURE_SIZE_BOUNDARY): Redefine in a way that
330 determines the value dynamically.
331
332Wed Jan 3 00:49:10 2001 Ovidiu Predescu <ovidiu@cup.hp.com>
333
334 * sendmsg.c: Added __objc_msg_forward, a hook that allows external
335 libraries to provide a function that returns the real forwarding
336 function. This can alleviate problems __builtin_apply() and
337 friends have on various platforms. (Solution suggested by Helge
338 Hess.)
339
340 * objc/objc-api.h: Define __objc_msg_forward.
341
342 * sendmsg.c: Define gen_rtx_REG.
343
3442000-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
345
346 * thr-rtems.c: New file. Stub to compile.
347
3482000-09-06 Alexandre Oliva <aoliva@redhat.com>
349
350 * configure: Rebuilt with new libtool.m4.
351
352Tue Aug 15 00:38:56 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
353
354 * configure.in: Create a config.h file. Check for <sched.h>.
355 * configure: Regenerate.
356
357 * config.h.in: Check for <sched.h>.
358
3592000-08-14 Zack Weinberg <zack@wolery.cumb.org>
360
361 * configure: Regenerate after change to ../libtool.m4.
362
3632000-08-14 Andreas Schwab <schwab@suse.de>
364
365 * objc-features.texi (Top): Move @menu at end of node.
366
3672000-08-11 Manfred Hollstein <manfredh@redhat.com>
368
369 * objc-features.texi: Move @node Top before @menu.
370
371Sun Aug 6 23:27:49 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
372
373 * objc-features.texi: Documented the new -fconstant-string-class
374 option.
375
376Sun Aug 6 22:51:16 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
377
378 * thr-posix.c: Integrated Chris Ball's <cball@fmco.com> changes to
379 improve the Posix thread support for Objective-C.
380
3812000-08-04 Zack Weinberg <zack@wolery.cumb.org>
382
383 * aclocal.m4: Replace copy of ../libtool.m4 with
384 sinclude(../libtool.m4).
385
386Fri Jul 28 08:58:02 2000 Nicola Pero <nicola@brainstorm.co.uk>
387
388 * configure.in: Added libtool support; build shared libraries
389 if --enable-shared was passed on command line.
390 * Makefile.in: Modified most compilation commands to use libtool.
391 * aclocal.m4: New symbolic link to the ../libtool.m4, from the
392 libtool distribution.
393
394Sat Jul 29 00:10:21 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
395
396 * sarray.c, Object.m: Removed the explicit prototypes for strlen
397 and memcpy on 64-bit platforms (Suggested by Rodney Brown
398 <rdb@cup.hp.com>).
399
4002000-05-12 H.J. Lu (hjl@gnu.org)
401
402 * Makefile.in (GTHREAD_FLAGS): New.
403 (ALL_CFLAGS): Add $(GTHREAD_FLAGS).
404 (OBJC_THREAD_FILE): Changed to thr-objc.
405
406 * configure.in (GTHREAD_FLAGS): New, check and replace it for
407 Makefile.
408 (OBJC_THREAD_FILE): Removed.
409
410 * thr-objc.c: New.
411
4122000-07-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
413
414 * objc/hash.h: Include string.h.
415
4162000-04-15 David Edelsohn <edelsohn@gnu.org>
417
418 * Object.m (strlen): 64-bit PowerPC is a 64bit platform as well.
419
4202000-04-12 Jakub Jelinek <jakub@redhat.com>
421
422 * Object.m (strlen): Provide prototype on all 64bit platforms,
423 not only alpha.
424 * sarray.c (memcpy): Likewise.
425 * encoding.c (objc_layout_finish_structure): Don't use
426 ROUND_TYPE_ALIGN on sparc.
427
428 * encoding.c (objc_layout_structure_next_member): Do the whole
429 procedure even for the first member, so that we get correct
430 alignment.
431
4322000-03-29 Zack Weinberg <zack@wolery.cumb.org>
433
434 * objc/Protocol.h, objc/objc-list.h: Change #endif labels to
435 comments.
436
4372000-02-23 Zack Weinberg <zack@wolery.cumb.org>
438
439 * Makefile.in: Add -DIN_TARGET_LIBS to ALL_CFLAGS.
440
441Thu Sep 23 07:19:12 1999 Chris Ball <cball@fmco.com>
442
443 * thr-posix.c (__objc_mutex_deallocate): made deallocate work.
444
445Tue Sep 21 07:47:10 1999 Jeffrey A Law (law@cygnus.com)
446
447 * Makefile.in (gc.o, gc_gc.o): Do not pass -fgnu-runtime to
448 the compiler when building C code.
449
450Fri Aug 6 23:32:29 1999 Daniel Jacobowitz <drow@drow.them.org>
451
452 * Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix,
453 libdir, libsubdir and tooldir.
454
455Mon Jun 21 05:40:15 1999 John David Anglin <dave@hiauly1>
456
457 * init.c (__objc_force_linking): Make global.
458
459Thu May 20 03:20:59 1999 Jeffrey A Law (law@cygnus.com)
460
461 * configure.in (AC_EXEEXT): Remove call.
462 (compiler_name): Explicitly check with no extension and .exe
463 extension.
464 * configure: Regenerate.
465
466Sun Apr 25 01:15:34 1999 Mumit Khan <khan@xraylith.wisc.edu>
467
468 * Makefile.in (CC1OBJ): Define in terms of CC.
469 (runtime-info.h): Use.
470
471Fri April 8 08:21:07 1999 Ovidiu Predescu <ovidiu@cup.hp.com>
472
473 * objc-features.texi: Updated the URL to Boehm's GC page.
474
475Fri Mar 26 23:41:07 1999 Ovidiu Predescu <ovidiu@cup.hp.com>
476
477 * archive.c (__objc_code_char, __objc_write_char): Explicitly specify
478 the char as being signed (patch from Daniel Jacobowitz
479 <drow@false.org>).
480
481Wed Mar 24 22:41:28 1999 Mumit Khan <khan@xraylith.wisc.edu>
482
483 * configure.in (AC_PREREQ): Update to 2.13.
484 (AC_EXEEXT): Call to find possible file extension.
485 (compiler_name): Use.
486 * configure: Regenerate.
487
488Wed Jan 27 02:31:01 1999 Jeffrey A Law (law@cygnus.com)
489
490 * Makefile.in (ALL_CFLAGS): Add -DIN_GCC.
491
492Tue Jan 5 01:38:53 1999 Jeffrey A Law (law@cygnus.com)
493
494 * configure.in (thread_file): Correct and simplify code to find
495 the thread file.
496 * configure: Rebuilt.
497
4981998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
499
500 * configure.in (compiler_name): Add check to detect if this
501 language's compiler has been built.
502 * configure: Regenerate.
503
504Mon Nov 23 16:50:28 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
505
506 * configure.in: Use AC_PREREQ(2.12.1).
507
508Thu Nov 19 20:33:37 1998 Jeffrey A Law (law@cygnus.com)
509
510 * Makefile.in (runtime-info.h): Avoid GNU make extensions.
511
512Sun Nov 8 17:46:14 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
513
514 * Makefile.in (INCLUDES): Add -I$(srcdir)/$(MULTISRCTOP)../include.
515
516Thu Oct 22 14:34:06 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
517
518 * configure.in: Use AC_CONFIG_AUX_DIR($topsrcdir).
519
520Sat Oct 17 05:21:31 1998 Ovidiu Predescu <ovidiu@slip.net>
521
522 * objc-features.texi (Top): Changed the email address.
523 * objc-features.texi (Garbage Collection): Use @uref instead of @url.
524
525Mon Oct 11 21:25:27 1998 Ovidiu Predescu <ovidiu@slip.net>
526
527 * encoding.c: Redefine get_inner_array_type to get the first entry
528 in the structure.
529
530Thu Oct 8 12:21:14 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
531
532 * encoding.c (objc_skip_type_qualifiers): Handle _C_BYREF.
533 (objc_get_type_qualifiers): Similarly.
534 * objc/encoding.h (_C_BYREF): Define.
535 (_F_BYREF): Define.
536
5371998-10-07 David S. Miller <davem@pierdol.cobaltmicro.com>
538
539 * objc/sarray.h: Make boffset be an unsigned long when sparc so it
540 works out on 64-bit systems.
541
542Tue Oct 6 20:32:06 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
543
544 * Makefile.in (INCLUDES): Make it multilib-friendly.
545
546Fri Oct 2 07:12:14 1998 H.J. Lu (hjl@gnu.org)
547
548 * Makefile.in (INCLUDES): Add -I$(srcdir)/../gcc.
549
550Thu Oct 1 22:33:03 1998 Robert Lipe <robertl@dgii.com>
551 Jeffrey A Law (law@cygnus.com)
552
553 * Makefile.in (INCLUDES): Reference gcc via $MULTIBUILDTOP.
554 (FLAGS_TO_PASS): Added.
555 (runtime-info.h): Reference cc1ibj via $MULTIBUILDTOP.
556
557 * archive.c: Change config.h to tconfig.h.
558
559 * configure.in: Find gcc's object directory even for multilibs.
560
561Wed Sep 30 18:17:17 1998 Robert Lipe <robertl@dgii.com>
562
563 * configure.in: Escape ^ in grep string.
564 * configure: Rebuilt.
565
566Wed Sep 30 09:14:52 1998 Jeffrey A Law (law@cygnus.com)
567
568 * All .h files pushed down into the objc/ subdirectory.
569 * Makefile.in (copy_headers): Corresponding changes.
570 * configure.in (AC_INIT): Corresponding changes.
571 * configure: Rebuilt.
572
5731998-09-30 Ben Elliston <bje@cygnus.com>
574 Jeff Law <law@cygnus.com>
575
576 * Makefile.in: Rewrite.
577
578 * configure.in: Likewise.
579
580 * configure: Regenerate.
581
582 * All .c files. Remove "objc" prefix when including objc header
583 files. Include tconfig.h, not ../tconfig.h.
584
585Mon Sep 21 23:27:10 1998 Ovidiu Predescu <ovidiu@slip.net>
586
587 * encoding.c (TREE_TYPE, ARRAY_TYPE): Define.
588 (get_inner_array_type): Define.
589
5901998-09-21 Ben Elliston <bje@cygnus.com>
591
592 * New directory. Moved files from ../gcc/objc.
Note: See TracBrowser for help on using the repository browser.