Remove straggling references to .s files.
authorDavid S. Miller <davem@davemloft.net>
Tue, 22 May 2012 04:59:29 +0000 (21:59 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 22 May 2012 04:59:29 +0000 (21:59 -0700)
* Makefules (o-iterator): Remove .s cases.
(compile-command.s): Delete.
(COMPILE.s): Delete.
* sysdeps/unix/make-syscalls.sh: Remove .s file tests.

ChangeLog
Makerules
sysdeps/unix/make-syscalls.sh

index d9c07ff7e9e57f2144cd83de33c45c4c214a5dcc..caa476e7f92096a461ddd076145ebdba062e1f92 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2012-05-21  David S. Miller  <davem@davemloft.net>
+
+       * Makefules (o-iterator): Remove .s cases.
+       (compile-command.s): Delete.
+       (COMPILE.s): Delete.
+       * sysdeps/unix/make-syscalls.sh: Remove .s file tests.
+
 2012-05-21  Joseph Myers  <joseph@codesourcery.com>
 
        * configure.in (libc_cv_predef_stack_protector): Only consider
index bce427d0a2a5d78e4fe54aa98260d940fff7920f..0fd1b5b3e3258fcf7e41f468514ffcb7f28c8db2 100644 (file)
--- a/Makerules
+++ b/Makerules
@@ -274,12 +274,6 @@ endef
 object-suffixes-left := $(all-object-suffixes)
 include $(o-iterator)
 
-define o-iterator-doit
-$(objpfx)%$o: %.s $(before-compile); $$(compile-command.s)
-endef
-object-suffixes-left := $(all-object-suffixes)
-include $(o-iterator)
-
 define o-iterator-doit
 $(objpfx)%$o: %.c $(before-compile); $$(compile-command.c)
 endef
@@ -303,12 +297,6 @@ endef
 object-suffixes-left := $(all-object-suffixes)
 include $(o-iterator)
 
-define o-iterator-doit
-$(objpfx)%$o: $(objpfx)%.s $(before-compile); $$(compile-command.s)
-endef
-object-suffixes-left := $(all-object-suffixes)
-include $(o-iterator)
-
 define o-iterator-doit
 $(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c)
 endef
@@ -365,7 +353,6 @@ endif # sysd-sorted-done
 # Generate .dT files as we compile.
 compile-mkdep-flags = -MD -MP -MF $@.dt -MT $@
 compile-command.S = $(compile.S) $(OUTPUT_OPTION) $(compile-mkdep-flags)
-compile-command.s = $(COMPILE.s) $< $(OUTPUT_OPTION) $(compile-mkdep-flags)
 compile-command.c = $(compile.c) $(OUTPUT_OPTION) $(compile-mkdep-flags)
 compile-command.cc = $(compile.cc) $(OUTPUT_OPTION) $(compile-mkdep-flags)
 
@@ -381,7 +368,6 @@ compile.S = $(CC) $< -c $(CPPFLAGS) $(S-CPPFLAGS) \
                  $(ASFLAGS) $(ASFLAGS-$(suffix $@))
 COMPILE.S = $(CC) -c $(CPPFLAGS) $(S-CPPFLAGS) \
                  $(ASFLAGS) $(ASFLAGS-$(suffix $@))
-COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS)
 
 # We need this for the output to go in the right place.  It will default to
 # empty if make was configured to work with a cc that can't grok -c and -o
index ff452d6780a2220aacdc7b668c00eb1e77b5fecc..48aab629f561acafaa3bc8893495af29bb4ddf3f 100644 (file)
@@ -54,11 +54,9 @@ while read file caller rest; do
   for dir in $sysdirs; do
      { test -f $dir/$file.c && srcfile=$dir/$file.c; } ||
      { test -f $dir/$file.S && srcfile=$dir/$file.S; } ||
-     { test -f $dir/$file.s && srcfile=$dir/$file.s; } ||
      { test x$caller != x- &&
        { { test -f $dir/$caller.c && srcfile=$dir/$caller.c; } ||
-         { test -f $dir/$caller.S && srcfile=$dir/$caller.S; } ||
-         { test -f $dir/$caller.s && srcfile=$dir/$caller.s; }; }; } && break;
+         { test -f $dir/$caller.S && srcfile=$dir/$caller.S; }; }; } && break;
   done;
   echo $file $srcfile $caller $rest;
 done`