Re: [Qemu-devel] [PATCH] tcg: Add consistency checks for op definitions

2010-02-18 Thread Blue Swirl
Thanks, applied. On Mon, Feb 15, 2010 at 6:17 PM, Stefan Weil wrote: > When compiled with CONFIG_DEBUG_TCG, this code looks > for missing, duplicate and wrong entries in the > op definitions. > > Errors will raise an assertion at program start > (all checks are done in the initial phase). > > The

[Qemu-devel] [PATCH] tcg: Add consistency checks for op definitions

2010-02-15 Thread Stefan Weil
When compiled with CONFIG_DEBUG_TCG, this code looks for missing, duplicate and wrong entries in the op definitions. Errors will raise an assertion at program start (all checks are done in the initial phase). The current code contains such errors, at least for i386 guest on i386 host. Signed-off