Skip to content

Commit e8e2272

Browse files
committed
Revert "[build] Fix build on arm64 (taichi-dev#7978)"
This reverts commit c460101.
1 parent 9f67cf7 commit e8e2272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: taichi/runtime/llvm/runtime_module/runtime.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1147,7 +1147,7 @@ uint32 cuda_match_any_sync_i64(u32 mask, i64 value) {
11471147
u32 ret;
11481148
asm volatile("match.any.sync.b64 %0, %1, %2;"
11491149
: "=r"(ret)
1150-
: "i"(value), "r"(mask));
1150+
: "l"(value), "r"(mask));
11511151
return ret;
11521152
#else
11531153
return 0;

0 commit comments

Comments
 (0)