Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/cpu_features.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-roe <2479665+michael-roe@users.noreply.github.com>2022-05-19 12:57:13 +0300
committerGitHub <noreply@github.com>2022-05-19 12:57:13 +0300
commit8b3f891d9b0ff7ecfbee8c86f7e78a9d543d3b56 (patch)
tree41bb12c685c2c07960e0e46e17762a6b43b1858e
parent0bf4ea05294061560a0f84fa39af4db66b91b943 (diff)
Added CPU_FEATURES_COMPILED_MIPS_MIPS3D. (#240)
Co-authored-by: Michael Roe <michael-roe@users.noreply.github.com>
-rw-r--r--include/cpu_features_macros.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/cpu_features_macros.h b/include/cpu_features_macros.h
index 6a2f76a..d0f23b0 100644
--- a/include/cpu_features_macros.h
+++ b/include/cpu_features_macros.h
@@ -224,6 +224,11 @@
#else
#define CPU_FEATURES_COMPILED_MIPS_MSA 0
#endif // defined(__mips_msa)
+#if defined(__mips3d)
+#define CPU_FEATURES_COMPILED_MIPS_MIPS3D 1
+#else
+#define CPU_FEATURES_COMPILED_MIPS_MIPS3D 0
+#endif
#endif // defined(CPU_FEATURES_ARCH_MIPS)
////////////////////////////////////////////////////////////////////////////////