Skip to content

Commit 85d5ed8

Browse files
committed
[compiler-rt] Fix obvious syntax error
This is breaking Android compiler-rt builds.
1 parent 8c296d5 commit 85d5ed8

File tree

1 file changed

+1
-1
lines changed
  • compiler-rt/lib/builtins/cpu_model/aarch64/lse_atomics

1 file changed

+1
-1
lines changed

compiler-rt/lib/builtins/cpu_model/aarch64/lse_atomics/android.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
static void __isExynos9810(void) {
55
char arch[PROP_VALUE_MAX];
6-
return (__system_property_get("ro.arch", arch) > 0 &&
6+
return __system_property_get("ro.arch", arch) > 0 &&
77
strncmp(arch, "exynos9810", sizeof("exynos9810") - 1) == 0;
88
}
99

0 commit comments

Comments
 (0)