fixed-bit.c, [...]: Move to ../libgcc.

gcc:
	* config/fixed-bit.c, config/fixed-bit.h: Move to ../libgcc.

	libgcc:
	* fixed-bit.c, fixed-bit.h: New files.
	* fixed-obj.mk ($o$(objext), $(o)_s$(objext)): Use $(srcdir) to
	refer to fixed-bit.c.

From-SVN: r176036
This commit is contained in:
Rainer Orth 2011-07-08 11:18:38 +00:00 committed by Rainer Orth
parent c0d8ec2b23
commit a039d7c2f1
5 changed files with 15 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2011-07-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config/fixed-bit.c, config/fixed-bit.h: Move to ../libgcc.
2011-07-08 Martin Jambor <mjambor@suse.cz>
* tree-sra.c (analyze_all_variable_accesses): Dump that a struture

View File

@ -1,3 +1,9 @@
2011-07-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* fixed-bit.c, fixed-bit.h: New files.
* fixed-obj.mk ($o$(objext), $(o)_s$(objext)): Use $(srcdir) to
refer to fixed-bit.c.
2011-07-07 Joseph Myers <joseph@codesourcery.com>
* config.host (*local*): Remove.

View File

@ -51,7 +51,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#define MIN_UNITS_PER_WORD UNITS_PER_WORD
#endif
#include "config/fixed-bit.h"
#include "fixed-bit.h"
#if defined(FIXED_ADD) && defined(L_add)
FIXED_C_TYPE

View File

@ -22,10 +22,10 @@ endif
#$(info $o$(objext): -DL$($o-label) $($o-opt))
$o$(objext): %$(objext): $(gcc_srcdir)/config/fixed-bit.c
$(gcc_compile) -DL$($*-label) $($*-opt) -c $(gcc_srcdir)/config/fixed-bit.c $(vis_hide)
$o$(objext): %$(objext): $(srcdir)/fixed-bit.c
$(gcc_compile) -DL$($*-label) $($*-opt) -c $(srcdir)/fixed-bit.c $(vis_hide)
ifeq ($(enable_shared),yes)
$(o)_s$(objext): %_s$(objext): $(gcc_srcdir)/config/fixed-bit.c
$(gcc_s_compile) -DL$($*-label) $($*-opt) -c $(gcc_srcdir)/config/fixed-bit.c
$(o)_s$(objext): %_s$(objext): $(srcdir)/fixed-bit.c
$(gcc_s_compile) -DL$($*-label) $($*-opt) -c $(srcdir)/fixed-bit.c
endif