aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRory OConnell <19547+RoryO@users.noreply.github.com>2024-08-19 15:50:42 -0700
committerRory OConnell <19547+RoryO@users.noreply.github.com>2024-08-19 15:50:42 -0700
commit97795ff3a2dfbdac21e337a2d26621d926822dc0 (patch)
tree37a4e8d9211c02c3333c321263fa33b21d2a4496 /core
parent3fc1f6f1cd739c3e8a1b58886aea6a679bd34d4e (diff)
fix simd var typo
Diffstat (limited to 'core')
-rw-r--r--core/bytes/bytes.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bytes/bytes.odin b/core/bytes/bytes.odin
index 0ac8ff765..5a510951e 100644
--- a/core/bytes/bytes.odin
+++ b/core/bytes/bytes.odin
@@ -356,7 +356,7 @@ index_byte :: proc(s: []byte, c: byte) -> (index: int) #no_bounds_check {
// consumption related woes make premature to have a dedicated
// code path.
when ODIN_ARCH == .amd64 && intrinsics.has_target_feature("avx2") {
- c_vec_256: sind.u8x32 = c
+ c_vec_256: simd.u8x32 = c
s_vecs: [4]simd.u8x32 = ---
c_vecs: [4]simd.u8x32 = ---