diff options
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/objc/Make-lang.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index b9b1fdc..e0fd501 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,8 @@ +2014-09-15 Jakub Jelinek <jakub@redhat.com> + + * Make-lang.in (check_objc_parallelize): Change to just an upper + bound number. + 2014-07-14 Jan Hubicka <hubicka@ucw.cz> * objc-act.c (objc_common_tree_size): New function. diff --git a/gcc/objc/Make-lang.in b/gcc/objc/Make-lang.in index cd1fdb6..73570cd 100644 --- a/gcc/objc/Make-lang.in +++ b/gcc/objc/Make-lang.in @@ -96,7 +96,7 @@ lang_checks += check-objc # The following allows you to do 'make check-objc -j2'. The # execute.exp tests will be run in parallel with all the other ones. lang_checks_parallelized += check-objc -check_objc_parallelize = gnu-encoding.exp execute.exp exceptions.exp +check_objc_parallelize = 6 # # Install hooks: |