Am 07.04.2016 um 20:15 schrieb Richard Henderson: > On 04/07/2016 08:53 AM, Sergey Fedorov wrote: >> +/* Enable TCI assertions only when debugging TCG (and without NDEBUG >> defined). >> + * Without assertions, the interpreter runs much faster. */ >> +#if defined(CONFIG_DEBUG_TCG) >> +# define tci_assert(cond) assert(cond) >> +#else >> +# define tci_assert(cond) ((void)0) >> #endif >> > > Please just use tcg_debug_assert. > > > r~
Hi Richard, that's a good suggestion, but maybe a little late for 2.6-rc2. I already sent a pull request an hour ago after Michael had added his tested-by. My first priority is fixing the build regression in 2.6. I can try to prepare a new patch, wait for reviews and send a pull request, but I am afraid this might not be finished in time for 2.6. Regards Stefan