diff options
author | Jakub Jelinek <jakub@gcc.gnu.org> | 2015-11-26 21:00:33 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2015-11-26 21:00:33 +0100 |
commit | 1b21256287dc6caadb31ed0158f4cbc7a93d9046 (patch) | |
tree | c2b038bccc4a413228bc5467f9316b4a45cb89ba /gcc | |
parent | 57fbfd5a55e2ffb1179a2fd2836a7c95c687d83a (diff) | |
download | gcc-1b21256287dc6caadb31ed0158f4cbc7a93d9046.zip gcc-1b21256287dc6caadb31ed0158f4cbc7a93d9046.tar.gz gcc-1b21256287dc6caadb31ed0158f4cbc7a93d9046.tar.bz2 |
* Makefile.in (build/genmatch.o): Depend on internal-fn.def.
From-SVN: r230982
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 22 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 14 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a5b9c4e..87c97e0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-11-26 Jakub Jelinek <jakub@redhat.com> + + * Makefile.in (build/genmatch.o): Depend on internal-fn.def. + 2015-11-26 David Edelsohn <dje.gcc@gmail.com> * doc/install.texi (Prerequisites): Increase ISL requirement to @@ -5,7 +9,7 @@ 2015-11-26 Matthew Wahab <matthew.wahab@arm.com> - * gcc/config/aarch64/arm_neon.h + * config/aarch64/arm_neon.h (vqrdmlah_laneq_s16, vqrdmlah_laneq_s32): New. (vqrdmlahq_laneq_s16, vqrdmlahq_laneq_s32): New. (vqrdmlsh_lane_s16, vqrdmlsh_lane_s32): New. @@ -21,7 +25,7 @@ 2015-11-26 Matthew Wahab <matthew.wahab@arm.com> - * gcc/config/aarch64/arm_neon.h (vqrdmlah_s16, vqrdmlah_s32): New. + * config/aarch64/arm_neon.h (vqrdmlah_s16, vqrdmlah_s32): New. (vqrdmlahq_s16, vqrdmlahq_s32): New. (vqrdmlsh_s16, vqrdmlsh_s32): New. (vqrdmlshq_s16, vqrdmlshq_s32): New. @@ -530,7 +534,7 @@ 2015-11-24 Wilco Dijkstra <wdijkstr@arm.com> - * gcc/config/aarch64/aarch64.md (add<mode>3): + * config/aarch64/aarch64.md (add<mode>3): Block early expansion into 2 add instructions. (add<mode>3_pluslong): New pattern to combine complex immediates into 2 additions. @@ -749,7 +753,7 @@ PR tree-optimization/68327 * tree-vect-loop.c (vect_determine_vectorization_factor): Don't compute vectype for non-relevant mask producers. - * gcc/tree-vect-stmts.c (vectorizable_comparison): Check stmt + * tree-vect-stmts.c (vectorizable_comparison): Check stmt relevance earlier. 2015-11-23 Tom de Vries <tom@codesourcery.com> @@ -2156,7 +2160,7 @@ 2015-11-13 Nathan Sidwell <nathan@codesourcery.com> - * gcc/omp-low.c (scan_sharing_clauses): Accept INDEPENDENT, AUTO & SEQ. + * omp-low.c (scan_sharing_clauses): Accept INDEPENDENT, AUTO & SEQ. (oacc_loop_fixed_partitions): Correct return type to bool. (oacc_loop_auto_partitions): New. (oacc_loop_partition): Take mask argument, call @@ -2489,17 +2493,17 @@ 2015-11-12 Brad Lucier <lucier@math.purdue.edu> - * gcc/cprop.c (is_too_expensive): Remove. + * cprop.c (is_too_expensive): Remove. (gcse.h): Include. (one_cprop_pass): Call gcse_or_cprop_is_too_expensive, not is_too_expensive. - * gcc/gcse.h (gcse_or_cprop_is_too_expensive): Declare. - * gcc/gcse.c (is_too_expensive): Rename to ... + * gcse.h (gcse_or_cprop_is_too_expensive): Declare. + * gcse.c (is_too_expensive): Rename to ... (gcse_or_cprop_is_too_expensive): ... this. Expand warning to add required size of max-gcse-memory. (one_pre_gcse_pass): Use it. (one_code_hoisting_pass): Use it. - * gcc/params.def (max-gcse-memory): Increase from 50MB to 128MB. + * params.def (max-gcse-memory): Increase from 50MB to 128MB. 2015-11-12 James Norris <jnorris@codesourcery.com> Joseph Myers <joseph@codesourcery.com> diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 0fd8d99..bee2879 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2598,7 +2598,7 @@ build/genmddump.o : genmddump.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h build/genmatch.o : genmatch.c $(BCONFIG_H) $(SYSTEM_H) \ coretypes.h errors.h $(HASH_TABLE_H) hash-map.h $(GGC_H) is-a.h \ - tree.def builtins.def + tree.def builtins.def internal-fn.def build/gencfn-macros.o : gencfn-macros.c $(BCONFIG_H) $(SYSTEM_H) \ coretypes.h errors.h $(HASH_TABLE_H) hash-set.h builtins.def internal-fn.def |