[PATCH] D93368: [RISCV] Define vector compare intrinsics.

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 19 14:21:12 PST 2020


craig.topper added a comment.

Could we use a sequence like this for the tests to make this patch not need D93364 <https://reviews.llvm.org/D93364>?

1. (a < b) && (b < c) in two instructions vmslt.vv    v0, va, vb        # All body elements written <- uses the unmasked intrinsic to create a mask inside the function vmslt.vv    v0, vb, vc, v0.t  # Only update at set mask <- uses the masked intrinsic we want to test


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D93368/new/

https://reviews.llvm.org/D93368



More information about the llvm-commits mailing list