t-msp430 (lib2_mul_none.o): Only use the first dependency as the source file to be...
authorNick Clifton <nickc@redhat.com>
Fri, 15 Jan 2016 08:18:13 +0000 (08:18 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Fri, 15 Jan 2016 08:18:13 +0000 (08:18 +0000)
* config/msp430/t-msp430 (lib2_mul_none.o): Only use the first
dependency as the source file to be compiled.
(lib2_mul_16bit.o, lib2hw_mul_16.o, lib2hw_mul_32.o)
(lib2hw_mul_f5.o): Likewise.

From-SVN: r232402

libgcc/ChangeLog
libgcc/config/msp430/t-msp430

index ec943f407424ade02fa3efa8c7a9cdf938248e8b..4cd8f01addf6bf4a6550c8c071e70db52c4b2578 100644 (file)
@@ -1,3 +1,10 @@
+2016-01-15  Nick Clifton  <nickc@redhat.com>
+
+       * config/msp430/t-msp430 (lib2_mul_none.o): Only use the first
+       dependency as the source file to be compiled.
+       (lib2_mul_16bit.o, lib2hw_mul_16.o, lib2hw_mul_32.o)
+       (lib2hw_mul_f5.o): Likewise.
+
 2016-01-13  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
        * libgcc/config/rs6000/extendkftf2-sw.c: Revert 2016-01-13 change.
index 3744cc42dded54c0586adcaef509967593ce093c..562c458e23f56c2270ea4b9a2b40eb7e8a209f8d 100644 (file)
@@ -44,19 +44,19 @@ LIB2ADD = \
 HOST_LIBGCC2_CFLAGS += -Os -ffunction-sections -fdata-sections -mhwmult=none
 
 lib2_mul_none.o: $(srcdir)/config/msp430/lib2mul.c
-       $(gcc_compile) $^ -c -DMUL_NONE
+       $(gcc_compile) $< -c -DMUL_NONE
 
 lib2_mul_16bit.o: $(srcdir)/config/msp430/lib2mul.c
-       $(gcc_compile) $^ -c -DMUL_16
+       $(gcc_compile) $< -c -DMUL_16
 
 lib2hw_mul_16.o: $(srcdir)/config/msp430/lib2hw_mul.S
-       $(gcc_compile) $^ -c -DMUL_16
+       $(gcc_compile) $< -c -DMUL_16
 
 lib2hw_mul_32.o: $(srcdir)/config/msp430/lib2hw_mul.S
-       $(gcc_compile) $^ -c -DMUL_32
+       $(gcc_compile) $< -c -DMUL_32
 
 lib2hw_mul_f5.o: $(srcdir)/config/msp430/lib2hw_mul.S
-       $(gcc_compile) $^ -c -DMUL_F5
+       $(gcc_compile) $< -c -DMUL_F5
 
 libmul_none.a: lib2_mul_none.o
        $(AR_CREATE_FOR_TARGET) $@ $^