We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 358fe49 commit 394e481Copy full SHA for 394e481
compiler-rt/lib/builtins/cpu_model/aarch64/lse_atomics/android.inc
@@ -1,7 +1,8 @@
1
#include <string.h>
2
+#include <sys/auxv.h>
3
#include <sys/system_properties.h>
4
-static void __isExynos9810(void) {
5
+static bool __isExynos9810(void) {
6
char arch[PROP_VALUE_MAX];
7
return __system_property_get("ro.arch", arch) > 0 &&
8
strncmp(arch, "exynos9810", sizeof("exynos9810") - 1) == 0;
0 commit comments