diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2015-08-03 17:33:45 +0200 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2015-08-03 17:33:45 +0200 |
commit | 0027ed3d7a77b75fd85176d9c72cde295056bc18 (patch) | |
tree | f976229f3a2b8e8e7e1029f62a4043ed06f29b1c | |
parent | c0503346d8793aa6cdb22c49cb8c2fe369ab5c4a (diff) | |
download | gcc-0027ed3d7a77b75fd85176d9c72cde295056bc18.zip gcc-0027ed3d7a77b75fd85176d9c72cde295056bc18.tar.gz gcc-0027ed3d7a77b75fd85176d9c72cde295056bc18.tar.bz2 |
* Makefile.in (OBJS): Put gimple-match.o and generic-match.o first.
From-SVN: r226514
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2bbcbfa..fb9d115 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 36168af..bd39467 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -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 \ |