diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-27 14:26:02 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-27 14:26:02 +0100 |
| commit | 2185dada56a7c649d11c4e2edea63b0595f69061 (patch) | |
| tree | 7b185cc0dd411930ddf7210d7a7613c79d0dd221 | |
| parent | 0b08080119f500e65a381d7e76a010789b4dcef0 (diff) | |
Change package name
| -rw-r--r-- | core/simd/x86/sse.odin | 4 | ||||
| -rw-r--r-- | core/simd/x86/types.odin | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/simd/x86/sse.odin b/core/simd/x86/sse.odin index 79b13f667..1af5a65f1 100644 --- a/core/simd/x86/sse.odin +++ b/core/simd/x86/sse.odin @@ -1,5 +1,5 @@ -//+build amd64 -package simd_amd64 +//+build i386, amd64 +package simd_x86 import "core:intrinsics" import "core:simd" diff --git a/core/simd/x86/types.odin b/core/simd/x86/types.odin index ef6342542..3c94d74a0 100644 --- a/core/simd/x86/types.odin +++ b/core/simd/x86/types.odin @@ -1,5 +1,5 @@ -//+build amd64 -package simd_amd64 +//+build i386, amd64 +package simd_x86 bf16 :: u16 |