wangpc added a comment.

In D157476#4572135 <https://reviews.llvm.org/D157476#4572135>, @eopXD wrote:

> 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);
>   }

Why need we pass unsigned integer when the vector elements are signed? Am I 
missing something here?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D157476

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to