On 2012-06-07 17:00, Jia Liu wrote: > TCGv_i32 sr_ove = tcg_temp_new_i32();
You need tcg_temp_local_new_i32 in order to last beyond the branches. Frankly, it's often easier to handle division and its exceptions via an out-of-line handler. r~
On 2012-06-07 17:00, Jia Liu wrote: > TCGv_i32 sr_ove = tcg_temp_new_i32();
You need tcg_temp_local_new_i32 in order to last beyond the branches. Frankly, it's often easier to handle division and its exceptions via an out-of-line handler. r~