diff options
| author | FourteenBrush <74827262+FourteenBrush@users.noreply.github.com> | 2024-09-18 17:05:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-18 17:05:09 +0200 |
| commit | 20a49481edd931f0e4c6d1af1a4e1607b9bf2f54 (patch) | |
| tree | f17325dc28d58c498c0ce78bbd60ac575b7c902f /builtin | |
| parent | 1f47918492bdd91c740d6a527f12c8f2fc7d846e (diff) | |
Fix indentation
Diffstat (limited to 'builtin')
| -rw-r--r-- | builtin/intrinsics.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/intrinsics.odin b/builtin/intrinsics.odin index c89b379..262e8e2 100644 --- a/builtin/intrinsics.odin +++ b/builtin/intrinsics.odin @@ -357,8 +357,8 @@ simd_reduce_and :: proc(a: #simd[N]T) -> T --- simd_reduce_or :: proc(a: #simd[N]T) -> T --- simd_reduce_xor :: proc(a: #simd[N]T) -> T --- -simd_reduce_any :: proc(a: #simd[N]T) -> T --- -simd_reduce_all :: proc(a: #simd[N]T) -> T --- +simd_reduce_any :: proc(a: #simd[N]T) -> T --- +simd_reduce_all :: proc(a: #simd[N]T) -> T --- simd_gather :: proc(ptr: #simd[N]rawptr, val: #simd[N]T, mask: #simd[N]U) -> #simd[N]T --- simd_scatter :: proc(ptr: #simd[N]rawptr, val: #simd[N]T, mask: #simd[N]U) --- |