File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
compiler-rt/lib/builtins/cpu_model/aarch64/fmv Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ void CONSTRUCTOR_ATTRIBUTE __init_cpu_features(void) {
25
25
if (__isExynos9810 ())
26
26
return ;
27
27
28
- unsgined long hwcap = getauxval (AT_HWCAP);
28
+ unsigned long hwcap = getauxval (AT_HWCAP);
29
29
unsigned long hwcap2 = getauxval (AT_HWCAP2);
30
30
31
31
__ifunc_arg_t arg;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ void CONSTRUCTOR_ATTRIBUTE __init_cpu_features(void) {
11
11
if (__aarch64_cpu_features.features )
12
12
return ;
13
13
14
- unsgined long hwcap = getauxval (AT_HWCAP);
14
+ unsigned long hwcap = getauxval (AT_HWCAP);
15
15
unsigned long hwcap2 = getauxval (AT_HWCAP2);
16
16
17
17
__ifunc_arg_t arg;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ void CONSTRUCTOR_ATTRIBUTE __init_cpu_features(void) {
10
10
if (__aarch64_cpu_features.features )
11
11
return ;
12
12
13
- unsgined long hwcap = getauxval (AT_HWCAP);
13
+ unsigned long hwcap = getauxval (AT_HWCAP);
14
14
unsigned long hwcap2 = getauxval (AT_HWCAP2);
15
15
16
16
__ifunc_arg_t arg;
You can’t perform that action at this time.
0 commit comments