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
Upstream support for subtracting pointer values using the cir.ptr_diff operation. This will also require upstreaming the code to lower cir.ptr_diff to LLVM IR.
Suggested minimal test case
unsigned long long test_ptr_diff(int *a, int* b) {
return a - b;
}