https://bugs.llvm.org/show_bug.cgi?id=44347

Krzysztof Parzyszek <kparz...@quicinc.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |INVALID
             Status|NEW                         |RESOLVED

--- Comment #1 from Krzysztof Parzyszek <kparz...@quicinc.com> ---
The C4 instructions negate the result of the comparison (Pd = !cmp(...)).

The J4_cmpOP_C_jumpnv instructions do: if (R.new OP other-val) == C then jump
...
For example, J4_cmplt_f_jumpnv_nt will branch if (Ns8.new < Rt32) is false, or,
if (Rt32 > Ns8.new) is false, i.e. if !cmp.gt(Rt32, Ns8.new).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to