Re: [PATCH] Fix bootstrap on powerpc*-aix* (PR bootstrap/70704)

2016-05-01 Thread Jakub Jelinek
On Sun, May 01, 2016 at 11:05:29AM +0200, Andreas Schwab wrote: > Jakub Jelinek writes: > > > + if test "x$enable_checking" = x && \ > > + test -d ${srcdir}/gcc && \ > > + test x"`cat ${srcdir}/gcc/DEV-PHASE`" = xexperimental; then > > +stage1_checking=yes,types,extra > > s/=/=--ena

Re: [PATCH] Fix bootstrap on powerpc*-aix* (PR bootstrap/70704)

2016-05-01 Thread Andreas Schwab
Jakub Jelinek writes: > + if test "x$enable_checking" = x && \ > + test -d ${srcdir}/gcc && \ > + test x"`cat ${srcdir}/gcc/DEV-PHASE`" = xexperimental; then > +stage1_checking=yes,types,extra s/=/=--enable-checking=/ Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fing

Re: [PATCH] Fix bootstrap on powerpc*-aix* (PR bootstrap/70704)

2016-04-25 Thread Jason Merrill
Looks good to me. Jason On Mon, Apr 25, 2016 at 3:30 PM, Jakub Jelinek wrote: > Hi! > > As mentioned in the PR, some checking code, in particular the one > in C++ FE's build_non_dependent_expr, may affect code generation, as it can > instantiate templates that aren't instantiated otherwise, whic

[PATCH] Fix bootstrap on powerpc*-aix* (PR bootstrap/70704)

2016-04-25 Thread Jakub Jelinek
Hi! As mentioned in the PR, some checking code, in particular the one in C++ FE's build_non_dependent_expr, may affect code generation, as it can instantiate templates that aren't instantiated otherwise, which affects the various counters like cfun->funcdef_no, DECL_UID etc. I'd like to commit th