On 8/6/23 20:53, Jordan Niethe wrote:
+ tmp = tcg_out_need_prefix_align(s) * 4;tcg_out_need_prefix_align() returns a bool, optionally might prefer tmp = tcg_out_need_prefix_align(s) ? 4 : 0;
I suppose. C type promotion rules make the multiplication just the same though. That said, I've merged back Nick's tcg_pcrel_diff_for_prefix function using ?:. r~