Fix the following -Werror warning from clang 10.0.0:

sys/arm/arm/identcpu-v6.c:227:5: error: misleading indentation; statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation]
                                if (val & CPUV7_CT_CTYPE_RA)
                                ^
sys/arm/arm/identcpu-v6.c:225:4: note: previous statement is here
                        if (val & CPUV7_CT_CTYPE_WB)
                        ^

This was due to an accidentally inserted tab before the if statement.

MFC after:	3 days
This commit is contained in:
Dimitry Andric 2020-02-27 19:58:20 +00:00
parent 75dfc66c1b
commit a9e92640d0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/clang1000-import/; revision=358406

View File

@ -224,7 +224,7 @@ print_v7_cache(void )
printf(" WT");
if (val & CPUV7_CT_CTYPE_WB)
printf(" WB");
if (val & CPUV7_CT_CTYPE_RA)
if (val & CPUV7_CT_CTYPE_RA)
printf(" Read-Alloc");
if (val & CPUV7_CT_CTYPE_WA)
printf(" Write-Alloc");