* Makefile.in (OBJS): Put gimple-match.o and generic-match.o first.
authorSegher Boessenkool <segher@kernel.crashing.org>
Mon, 3 Aug 2015 15:33:45 +0000 (17:33 +0200)
committerSegher Boessenkool <segher@gcc.gnu.org>
Mon, 3 Aug 2015 15:33:45 +0000 (17:33 +0200)
From-SVN: r226514

gcc/ChangeLog
gcc/Makefile.in

index 2bbcbfa83745f7f9dc2d9def83ee9263b3c67f1a..fb9d11537d39b06954db0df2649e5aca6584d88a 100644 (file)
@@ -1,3 +1,7 @@
+2015-08-03  Segher Boessenkool  <segher@kernel.crashing.org>
+
+       * Makefile.in (OBJS): Put gimple-match.o and generic-match.o first.
+
 2015-08-03  Patrick Palka  <ppalka@gcc.gnu.org>
 
        * tree-ssa-uninit.c (find_uninit_use): Declare and pass to
index 36168af9e83e683fe7277bac11bd038e11527885..bd39467d9eab6bf4ebfb769d34e4d7c87b071316 100644 (file)
@@ -1165,10 +1165,12 @@ C_COMMON_OBJS = c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o \
   c-family/array-notation-common.o c-family/cilk.o c-family/c-ubsan.o
 
 # Language-independent object files.
-# We put the insn-*.o files first so that a parallel make will build
-# them sooner, because they are large and otherwise tend to be the
-# last objects to finish building.
+# We put the *-match.o and insn-*.o files first so that a parallel make
+# will build them sooner, because they are large and otherwise tend to be
+# the last objects to finish building.
 OBJS = \
+       gimple-match.o \
+       generic-match.o \
        insn-attrtab.o \
        insn-automata.o \
        insn-dfatab.o \
@@ -1263,8 +1265,6 @@ OBJS = \
        gimple-fold.o \
        gimple-laddress.o \
        gimple-low.o \
-       gimple-match.o \
-       generic-match.o \
        gimple-pretty-print.o \
        gimple-ssa-isolate-paths.o \
        gimple-ssa-strength-reduction.o \