diff -c3pbB --exclude-from=.patch_ignore src/gas/ChangeLog src-dlx/gas/ChangeLog *** src/gas/ChangeLog Thu May 23 21:48:39 2002 --- src-dlx/gas/ChangeLog Thu May 23 23:09:52 2002 *************** *** 1,3 **** --- 1,13 ---- + 2002-05-22 Kuang Hwa Lin + + * configure, Makefile.in: Added DLX configuraton and make target + support. + + * config/tc-dlx.c, config/tc-dlx.h: New files to support DLX backend. + + * testsuite/gas/dlx/*.[sd]: DLX gas testsuite, gas DLX backend and + opcodes test. + 2002-05-23 Jakub Jelinek * config/obj-elf.c (elf_common): Renamed from obj_elf_common. diff -c3pbB --exclude-from=.patch_ignore src/gas/Makefile.in src-dlx/gas/Makefile.in *** src/gas/Makefile.in Tue May 7 10:22:18 2002 --- src-dlx/gas/Makefile.in Thu May 9 11:35:02 2002 *************** IT_OBJS = itbl-parse.o itbl-lex.o itbl-o *** 148,153 **** --- 148,154 ---- # CPU types. This is only used for dependency information. CPU_TYPES = \ + dlx \ a29k \ alpha \ arc \ *************** HFILES = \ *** 342,347 **** --- 343,349 ---- # CPU files in config. TARGET_CPU_CFILES = \ + config/tc-dlx.c \ config/tc-a29k.c \ config/tc-alpha.c \ config/tc-arc.c \ *************** TARGET_CPU_CFILES = \ *** 390,395 **** --- 392,398 ---- TARGET_CPU_HFILES = \ + config/tc-dlx.h \ config/tc-a29k.h \ config/tc-alpha.h \ config/tc-arc.h \ *************** DEPTC_a29k_elf = $(INCDIR)/symcat.h $(sr *** 668,673 **** --- 671,680 ---- $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h \ $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/a29k.h + DEPTC_dlx_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \ + $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ + $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h $(INCDIR)/opcode/dlx.h + DEPTC_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \ $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \ *************** DEPOBJ_a29k_elf = $(INCDIR)/symcat.h $(s *** 1289,1294 **** --- 1296,1306 ---- $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \ $(INCDIR)/aout/aout64.h + DEPOBJ_dlx_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \ + $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ + $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h subsegs.h \ + $(INCDIR)/obstack.h $(INCDIR)/aout/aout64.h + DEPOBJ_alpha_coff = $(INCDIR)/symcat.h $(srcdir)/config/obj-coff.h \ $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \ $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \ *************** DEP_a29k_elf = $(srcdir)/config/obj-elf. *** 1858,1863 **** --- 1870,1879 ---- $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-a29k.h + DEP_dlx_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \ + $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ + $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h + DEP_alpha_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-alpha.h \ $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \ $(INCDIR)/bfdlink.h Common subdirectories: src/gas/config and src-dlx/gas/config diff -c3pbB --exclude-from=.patch_ignore src/gas/configure src-dlx/gas/configure *** src/gas/configure Tue May 21 20:47:36 2002 --- src-dlx/gas/configure Tue May 21 15:03:55 2002 *************** for this_target in $target $canon_target *** 2321,2326 **** --- 2321,2327 ---- # assign object format case ${generic_target} in + dlx-*-elf) fmt=elf ;; a29k-*-coff) fmt=coff ;; a29k-amd-udi) fmt=coff ;; a29k-amd-ebmon) fmt=coff ;; Common subdirectories: src/gas/doc and src-dlx/gas/doc Common subdirectories: src/gas/testsuite and src-dlx/gas/testsuite