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
I see many of the high-level dialects leaking to LLVM IR representations after running vast passes. Some of them I can easily reproduce like hl.ref, hl.addressof, hl.implicit_cast, hl.bitcast. The conversion pattern does not catch all and apply conversion fully.
int num = 10;
int test() {
int *ptrs[10] = {0,};
int **ptrofptr[10] = {0,};
for (int i = 0; i < 10; i++) {
ptrs[i] = #
ptrofptr[i] = ptrs + i;
}
return 0;
}
The text was updated successfully, but these errors were encountered:
VAST version
v0.0.66
LLVM version
19.1.0
Operating system
macos
Description
I see many of the high-level dialects leaking to LLVM IR representations after running vast passes. Some of them I can easily reproduce like
hl.ref
,hl.addressof
,hl.implicit_cast
,hl.bitcast
. The conversion pattern does not catch all and apply conversion fully.Steps to Reproduce
Can be reproduced with following snippet
The text was updated successfully, but these errors were encountered: