https://bugs.freedesktop.org/show_bug.cgi?id=90032
--- Comment #8 from Felix von Leitner <[email protected]> --- Hah, this is actually quite funny. src/gallium/auxiliary/util/u_debug.h 185 #ifdef DEBUG 186 #define debug_assert(expr) ((expr) ? (void)0 : _debug_assert_fail(#expr, __FILE__, __LINE__, __FUNCTION__)) 187 #else 188 #define debug_assert(expr) (void)(0 && (expr)) 199 #endif So even if you turn off debugging, you still evaluate expr, which contains the typeid. I added another line before 188 that #defines typeid(a) to 0, let's see what happens. -- You are receiving this mail because: You are the QA Contact for the bug. You are the assignee for the bug.
_______________________________________________ mesa-dev mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-dev
