You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You may change it within the asm block if you haven't used the preserves_flags option. There is no guarantee that it will remain set after the asm block ends AFAIK. You should put the kortestc and the instruction using the flag in the same asm block to prevent any instruction clobbering it to get in between.
Is it possible to change ZF flag using asm!?
For intrinsics _mm512_kortestc:
Description
Performs bitwise OR between k1 and k2, storing the result in dst. CF flag is set if dst consists of all 1's.
Operation
dst[15:0] := k1[15:0] | k2[15:0]
IF PopCount(dst[15:0]) == 16
SetCF()
FI
Is this doable in the nightly version?
The text was updated successfully, but these errors were encountered: