This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: GC mach_dep file extensions


Hans pointed out that ".S", not ".s" is the correct extension for some 
asm files because it means "put this through the preprocessor first". 
I've checked in this patch.

regards

Bryce.


2002-02-13  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>

    * dbg_mlc.c (GC_debug_generic_malloc): Removed.
   
    * sparc_mach_dep.S: Rename from sparc_mach_dep.s as it is a
    preprocessor file.
    * mips_sgi_mach_dep.S: Likewise.
    * Makefile.am: Update for above changes.
    * Makefile.in: Rebuilt.

Index: Makefile.am
===================================================================
RCS file: /cvs/gcc/gcc/boehm-gc/Makefile.am,v
retrieving revision 1.30
diff -u -r1.30 Makefile.am
--- Makefile.am 2002/02/12 04:37:53     1.30
+++ Makefile.am 2002/02/13 05:37:41
@@ -39,8 +39,8 @@
 libgcjgc_la_LDFLAGS = -version-info 1:1:0 -rpath $(toolexeclibdir)
 
 EXTRA_libgcjgc_la_SOURCES = alpha_mach_dep.s \
-mips_sgi_mach_dep.s mips_ultrix_mach_dep.s powerpc_macosx_mach_dep.s \
-rs6000_mach_dep.s sparc_mach_dep.s sparc_netbsd_mach_dep.s \
+mips_sgi_mach_dep.S mips_ultrix_mach_dep.s powerpc_macosx_mach_dep.s \
+rs6000_mach_dep.s sparc_mach_dep.S sparc_netbsd_mach_dep.s \
 sparc_sunos4_mach_dep.s ia64_save_regs_in_stack.s
 
 AM_CXXFLAGS = @GC_CFLAGS@



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]