diff options
author | Jakub Jelinek <jakub@redhat.com> | 2013-03-05 10:46:34 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2013-03-05 10:46:34 +0100 |
commit | db4138e3e20a776377b904b4ca1eae0c0186dbd6 (patch) | |
tree | e36d79b55ed211b47871d05027686b1f081442b0 | |
parent | dd3d1ec00198be9146593e68a18b015480015f28 (diff) | |
download | gcc-db4138e3e20a776377b904b4ca1eae0c0186dbd6.zip gcc-db4138e3e20a776377b904b4ca1eae0c0186dbd6.tar.gz gcc-db4138e3e20a776377b904b4ca1eae0c0186dbd6.tar.bz2 |
Makefile.in (dg_target_exps): Add aarch64.exp, epiphany.exp and tic6x.exp.
* Makefile.in (dg_target_exps): Add aarch64.exp, epiphany.exp and
tic6x.exp.
(check_gcc_parallelize): Run guality.exp as a separate job from
vect.exp with unsorted.exp and $(dg_target_exps) separately from
struct-layout-1.exp with stackalign.exp.
From-SVN: r196457
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 15 |
2 files changed, 15 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e55cebe..8d35977 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2013-03-05 Jakub Jelinek <jakub@redhat.com> + * Makefile.in (dg_target_exps): Add aarch64.exp, epiphany.exp and + tic6x.exp. + (check_gcc_parallelize): Run guality.exp as a separate job from + vect.exp with unsorted.exp and $(dg_target_exps) separately from + struct-layout-1.exp with stackalign.exp. + * alias.c (init_alias_analysis): Clear reg_known_equiv_p bitmap. PR middle-end/56461 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 0cdfa51..6d9ca1b 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -494,10 +494,11 @@ xm_include_list=@xm_include_list@ xm_defines=@xm_defines@ lang_checks= lang_checks_parallelized= -dg_target_exps:=alpha.exp,arm.exp,avr.exp,bfin.exp,cris.exp,frv.exp -dg_target_exps:=$(dg_target_exps),i386.exp,ia64.exp,m68k.exp,microblaze.exp -dg_target_exps:=$(dg_target_exps),mips.exp,powerpc.exp,rx.exp,s390.exp,sh.exp -dg_target_exps:=$(dg_target_exps),sparc.exp,spu.exp,xstormy16.exp +dg_target_exps:=aarch64.exp,alpha.exp,arm.exp,avr.exp,bfin.exp,cris.exp +dg_target_exps:=$(dg_target_exps),epiphany.exp,frv.exp,i386.exp,ia64.exp +dg_target_exps:=$(dg_target_exps),m68k.exp,microblaze.exp,mips.exp,powerpc.exp +dg_target_exps:=$(dg_target_exps),rx.exp,s390.exp,sh.exp,sparc.exp,spu.exp +dg_target_exps:=$(dg_target_exps),tic6x.exp,xstormy16.exp # This lists a couple of test files that take most time during check-gcc. # When doing parallelized check-gcc, these can run in parallel with the # remaining tests. Each word in this variable stands for work for one @@ -517,8 +518,10 @@ check_gcc_parallelize=execute.exp=execute/2* \ compile.exp=compile/\[9pP\]*,builtins.exp \ compile.exp=compile/\[013-8a-oq-zA-OQ-Z\]* \ dg-torture.exp,ieee.exp \ - vect.exp,guality.exp,unsorted.exp \ - struct-layout-1.exp,stackalign.exp,$(dg_target_exps) + vect.exp,unsorted.exp \ + guality.exp \ + struct-layout-1.exp,stackalign.exp \ + $(dg_target_exps) lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt $(srcdir)/common.opt lang_specs_files=@lang_specs_files@ lang_tree_files=@lang_tree_files@ |