Displaying 1 result from an estimated 1 matches for "fe62faf1".
Did you mean:
fe62fa9f
2017 Mar 09
2
Alias semantic
Hello fellow LLVM developers,
I was wondering about the semantic of aliasing.
Here are some examples where I am not sure if the two stores aliases:
Example 1:
for (int i = 2; i < n; ++i) {
store A[i];
store A[i-2];
}
Example 2:
for (int i = 2; i < n; ++i)
store A[i];
for (int i = 2; i < n; ++i)
store A[i-2];
In the example 1, they do not alias in a single iteration, but they