From 72db43f2d6b03fe99570eff706212be427aa44e8 Mon Sep 17 00:00:00 2001 From: turu Date: Mon, 9 Mar 2026 21:33:23 -0500 Subject: [PATCH] correcting SIMD shr examples documentation --- core/simd/simd.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/simd/simd.odin b/core/simd/simd.odin index e2373d3e2..52c97cc45 100644 --- a/core/simd/simd.odin +++ b/core/simd/simd.odin @@ -493,7 +493,7 @@ Example: +-------+-------+-------+-------+ res: +-------+-------+-------+--------+ - | 0x04 | 0x2a | 0 | 0xff | + | 0x04 | 0x2a | 0 | 0x7f | +-------+-------+-------+--------+ */ shr :: intrinsics.simd_shr @@ -581,7 +581,7 @@ Example: +-------+-------+-------+-------+ res: +-------+-------+-------+--------+ - | 0x04 | 0x2a | 0x01 | 0xff | + | 0x04 | 0x2a | 0x01 | 0x7f | +-------+-------+-------+--------+ */ shr_masked :: intrinsics.simd_shr_masked