[PATCH] D157476: [RISCV] Fix wrong type prototype of RVVSlideOneBuiltinSet

Yueh-Ting (eop) Chen via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 9 00:54:24 PDT 2023


eopXD added a comment.

I mean

  vint8mf8_t test_vslide1up_vx_i8mf8(vint8mf8_t src, int8_t value, size_t vl) {
    return __riscv_vslide1up_vx_i8mf8(src, value, vl);
  }

should change into

  vint8mf8_t test_vslide1up_vx_i8mf8(vint8mf8_t src, uint8_t value, size_t vl) {
    return __riscv_vslide1up_vx_i8mf8(src, value, vl);
  }


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D157476



More information about the cfe-commits mailing list