On 4/24/22 15:01, Paul Brook wrote:
+/* VEX prefix not allowed */ +#define CHECK_NO_VEX(s) do { \ + if (s->prefix & PREFIX_VEX) \ + goto illegal_op; \ + } while (0)
Make the do/while align, and add the required braces for the if, per coding style. r~