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
LLVM's basicaa is not safe for parallel applications because it breaks alias edges that should exist. However basicaa is the only (as far as I can tell) AA that reads function attributes.
To test for correctness:
for (i=0..N) {
arr[i-1] = ...
... = arr[i]
}
The two instructions above should alias, however they currently do not.
The text was updated successfully, but these errors were encountered:
LLVM's basicaa is not safe for parallel applications because it breaks alias edges that should exist. However basicaa is the only (as far as I can tell) AA that reads function attributes.
To test for correctness:
The two instructions above should alias, however they currently do not.
The text was updated successfully, but these errors were encountered: