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~

Reply via email to