summaryrefslogtreecommitdiff
path: root/gcc/Makefile.in
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2002-08-13 12:11:20 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2002-08-13 12:11:20 +0000
commit8733892f667ab4ae039caf7531bc5163c3042469 (patch)
tree1883d992516950fbeedd9c9dfa1a95b1a3b1d0ac /gcc/Makefile.in
parentf4769721584220bb4ac82f54f77a0a94b3be42aa (diff)
downloadgcc-8733892f667ab4ae039caf7531bc5163c3042469.tar.gz
libgcc2.c (L_bb): Remove unneeded #includes.
* libgcc2.c (L_bb): Remove unneeded #includes. (__global_counters, __gthreads_active): Remove unused globals. (__bb_exit_func): Merge counts into files rather than appending. * Makefile.in (INTERNAL_CFLAGS): Move COVERAGE_FLAGS from here ... (ALL_CFLAGS): ... to here. From-SVN: r56250
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r--gcc/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 28f1638e97a..af83d1eafc0 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -594,13 +594,13 @@ all.indirect: $(ALL)
# IN_GCC distinguishes between code compiled into GCC itself and other
# programs built during a bootstrap.
# autoconf inserts -DCROSS_COMPILE if we are building a cross compiler.
-INTERNAL_CFLAGS = -DIN_GCC @CROSS@ $(COVERAGE_FLAGS)
+INTERNAL_CFLAGS = -DIN_GCC @CROSS@
# This is the variable actually used when we compile.
# If you change this line, you probably also need to change the definition
# of HOST_CFLAGS in build-make to match.
ALL_CFLAGS = $(X_CFLAGS) $(T_CFLAGS) \
- $(CFLAGS) $(INTERNAL_CFLAGS) $(WARN_CFLAGS) $(XCFLAGS) @DEFS@
+ $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) $(XCFLAGS) @DEFS@
# Likewise.
ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)