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
When compiling the following code using ppc: https://godbolt.org/z/WP7PnjYbW
There will be an out of bound access in debug build, crash on release build.
define void @f(i128 %V, i8 %Idx, <2 x i128> %L, <2 x i128>* %G) {
BB:
%B1 = and i8 %Idx, -128
%I = insertelement <2 x i128> <i128 42, i128 42>, i128 %V, i8 %B1
%B2 = ashr <2 x i128> %L, %I
store <2 x i128> %B2, <2 x i128>* %G, align 32
ret void
}
Here is a stack trace on debug build, it seems some place has a mis calculated index.
When compiling the following code using ppc: https://godbolt.org/z/WP7PnjYbW
There will be an out of bound access in debug build, crash on release build.
Here is a stack trace on debug build, it seems some place has a mis calculated index.
The text was updated successfully, but these errors were encountered: