Re: regression in C++ parsing performance between 4.9.3 and 5.3.1

2016-03-29 Thread Jonathan Wakely
> There is a significant slow down and increase in ram usage Please report it to Bugzilla rather than this list, thanks.

regression in C++ parsing performance between 4.9.3 and 5.3.1

2016-03-28 Thread Pádraig Brady
The attached shell script will generate a larger version of the following: constexpr bool static_str_equal(const char* x, const char* y) { return (*x == 0 || *y == 0) ? (*x == *y) : ((*x == *y) && static_str_equal(x + 1, y + 1)); } int main(void) { static_assert( !static_str_equal("uns