qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 06/42] i386: Add CHECK_NO_VEX


From: Richard Henderson
Subject: Re: [PATCH v2 06/42] i386: Add CHECK_NO_VEX
Date: Mon, 25 Apr 2022 13:41:17 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.0

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~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]