| ... | @@ -1187,6 +1187,7 @@ pub fn indexOfScalarPos(comptime T: type, slice: []const T, start_index: usize, | ... | @@ -1187,6 +1187,7 @@ pub fn indexOfScalarPos(comptime T: type, slice: []const T, start_index: usize, |
| 1187 | | 1187 | |
| 1188 | var i: usize = start_index; | 1188 | var i: usize = start_index; |
| 1189 | if (backend_supports_vectors and | 1189 | if (backend_supports_vectors and |
| | 1190 | !std.debug.inValgrind() and // https://github.com/ziglang/zig/issues/17717 |
| 1190 | !@inComptime() and | 1191 | !@inComptime() and |
| 1191 | (@typeInfo(T) == .Int or @typeInfo(T) == .Float) and std.math.isPowerOfTwo(@bitSizeOf(T))) | 1192 | (@typeInfo(T) == .Int or @typeInfo(T) == .Float) and std.math.isPowerOfTwo(@bitSizeOf(T))) |
| 1192 | { | 1193 | { |