aboutsummaryrefslogtreecommitdiff
path: root/core/simd
diff options
context:
space:
mode:
authorKarl Zylinski <karl@zylinski.se>2024-09-14 18:27:49 +0200
committerKarl Zylinski <karl@zylinski.se>2024-09-14 18:27:49 +0200
commit19f0127e553940bb333f61ab7e8dab6f7455115e (patch)
tree30705898942106f3341d1decec4d335ac15b28cd /core/simd
parentb12d3124085058bc36f2e8feb5666a0c1f162343 (diff)
Moved all packages in core, base, vendor, tests and examples to use new #+ file tag syntax.
Diffstat (limited to 'core/simd')
-rw-r--r--core/simd/x86/abm.odin2
-rw-r--r--core/simd/x86/adx.odin2
-rw-r--r--core/simd/x86/aes.odin2
-rw-r--r--core/simd/x86/cmpxchg16b.odin2
-rw-r--r--core/simd/x86/fxsr.odin2
-rw-r--r--core/simd/x86/pclmulqdq.odin2
-rw-r--r--core/simd/x86/rdtsc.odin2
-rw-r--r--core/simd/x86/sha.odin2
-rw-r--r--core/simd/x86/sse.odin2
-rw-r--r--core/simd/x86/sse2.odin2
-rw-r--r--core/simd/x86/sse3.odin2
-rw-r--r--core/simd/x86/sse41.odin2
-rw-r--r--core/simd/x86/sse42.odin2
-rw-r--r--core/simd/x86/ssse3.odin2
-rw-r--r--core/simd/x86/types.odin2
15 files changed, 15 insertions, 15 deletions
diff --git a/core/simd/x86/abm.odin b/core/simd/x86/abm.odin
index 9018a835a..4b07086ce 100644
--- a/core/simd/x86/abm.odin
+++ b/core/simd/x86/abm.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
import "base:intrinsics"
diff --git a/core/simd/x86/adx.odin b/core/simd/x86/adx.odin
index 5750ae627..9c6ae063a 100644
--- a/core/simd/x86/adx.odin
+++ b/core/simd/x86/adx.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
@(require_results)
diff --git a/core/simd/x86/aes.odin b/core/simd/x86/aes.odin
index a2cd2e4d3..338381422 100644
--- a/core/simd/x86/aes.odin
+++ b/core/simd/x86/aes.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
@(require_results, enable_target_feature = "aes")
diff --git a/core/simd/x86/cmpxchg16b.odin b/core/simd/x86/cmpxchg16b.odin
index 1307a9cf2..78ebd182f 100644
--- a/core/simd/x86/cmpxchg16b.odin
+++ b/core/simd/x86/cmpxchg16b.odin
@@ -1,4 +1,4 @@
-//+build amd64
+#+build amd64
package simd_x86
import "base:intrinsics"
diff --git a/core/simd/x86/fxsr.odin b/core/simd/x86/fxsr.odin
index a9213fed2..ab8cdca7d 100644
--- a/core/simd/x86/fxsr.odin
+++ b/core/simd/x86/fxsr.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
@(enable_target_feature="fxsr")
diff --git a/core/simd/x86/pclmulqdq.odin b/core/simd/x86/pclmulqdq.odin
index e827bf6b9..14e633c06 100644
--- a/core/simd/x86/pclmulqdq.odin
+++ b/core/simd/x86/pclmulqdq.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
@(require_results, enable_target_feature="pclmul")
diff --git a/core/simd/x86/rdtsc.odin b/core/simd/x86/rdtsc.odin
index 8a8b13c4b..84c762274 100644
--- a/core/simd/x86/rdtsc.odin
+++ b/core/simd/x86/rdtsc.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
@(require_results)
diff --git a/core/simd/x86/sha.odin b/core/simd/x86/sha.odin
index bc58e8504..8caa3a268 100644
--- a/core/simd/x86/sha.odin
+++ b/core/simd/x86/sha.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
@(require_results, enable_target_feature="sha")
diff --git a/core/simd/x86/sse.odin b/core/simd/x86/sse.odin
index 4dac50234..1b4a863b6 100644
--- a/core/simd/x86/sse.odin
+++ b/core/simd/x86/sse.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
import "base:intrinsics"
diff --git a/core/simd/x86/sse2.odin b/core/simd/x86/sse2.odin
index 2e3eb8523..aaddbe6b4 100644
--- a/core/simd/x86/sse2.odin
+++ b/core/simd/x86/sse2.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
import "base:intrinsics"
diff --git a/core/simd/x86/sse3.odin b/core/simd/x86/sse3.odin
index a905a7726..0e074c946 100644
--- a/core/simd/x86/sse3.odin
+++ b/core/simd/x86/sse3.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
import "base:intrinsics"
diff --git a/core/simd/x86/sse41.odin b/core/simd/x86/sse41.odin
index c2c1abc2d..81089ed63 100644
--- a/core/simd/x86/sse41.odin
+++ b/core/simd/x86/sse41.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
import "core:simd"
diff --git a/core/simd/x86/sse42.odin b/core/simd/x86/sse42.odin
index 7a674176b..1a5cb3f50 100644
--- a/core/simd/x86/sse42.odin
+++ b/core/simd/x86/sse42.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
import "core:simd"
diff --git a/core/simd/x86/ssse3.odin b/core/simd/x86/ssse3.odin
index 2026c7f53..07c846e7b 100644
--- a/core/simd/x86/ssse3.odin
+++ b/core/simd/x86/ssse3.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
import "base:intrinsics"
diff --git a/core/simd/x86/types.odin b/core/simd/x86/types.odin
index 06a2cd41e..ea0eff534 100644
--- a/core/simd/x86/types.odin
+++ b/core/simd/x86/types.odin
@@ -1,4 +1,4 @@
-//+build i386, amd64
+#+build i386, amd64
package simd_x86
import "core:simd"