Skip to content

Commit

Permalink
[RISCV] Fix wrong type prototype of RVVSlideOneBuiltinSet
Browse files Browse the repository at this point in the history
We need unsigned integer here.

Fixes #64534

Reviewed By: eopXD

Differential Revision: https://reviews.llvm.org/D157476
  • Loading branch information
wangpc-pp committed Aug 10, 2023
1 parent 4ed452b commit 5a3753f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/include/clang/Basic/riscv_vector.td
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ multiclass RVVInt64BinBuiltinSet
multiclass RVVSlideOneBuiltinSet
: RVVOutOp1BuiltinSet<NAME, "csil",
[["vx", "v", "vve"],
["vx", "Uv", "UvUve"]]>;
["vx", "Uv", "UvUvUe"]]>;

multiclass RVVSignedShiftBuiltinSet
: RVVOutOp1BuiltinSet<NAME, "csil",
Expand Down

0 comments on commit 5a3753f

Please sign in to comment.