Skip to content

Commit 5a3753f

Browse files
committed
[RISCV] Fix wrong type prototype of RVVSlideOneBuiltinSet
We need unsigned integer here. Fixes #64534 Reviewed By: eopXD Differential Revision: https://reviews.llvm.org/D157476
1 parent 4ed452b commit 5a3753f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang/Basic/riscv_vector.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ multiclass RVVInt64BinBuiltinSet
125125
multiclass RVVSlideOneBuiltinSet
126126
: RVVOutOp1BuiltinSet<NAME, "csil",
127127
[["vx", "v", "vve"],
128-
["vx", "Uv", "UvUve"]]>;
128+
["vx", "Uv", "UvUvUe"]]>;
129129

130130
multiclass RVVSignedShiftBuiltinSet
131131
: RVVOutOp1BuiltinSet<NAME, "csil",

0 commit comments

Comments
 (0)