You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clang generate @llvm.umul.with.overflow.i64 which is not supported by assigner on the follow example
[[circuit]] int func(const int num) {
int* out = new int[num];
for (int i = 0; i < num; i++) {
out[i] = num * 3 + 1;
}
int x = 0;
for (int i = 0; i < num; i++) {
x += out[i];
}
return x;
}
llvm.sadd.with.overflow.*
llvm.uadd.with.overflow.*
llvm.ssub.with.overflow.*
llvm.usub.with.overflow.*
llvm.smul.with.overflow.*
llvm.umul.with.overflow.*
clang generate
@llvm.umul.with.overflow.i64
which is not supported by assigner on the follow exampleIR
The text was updated successfully, but these errors were encountered: