]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Merge r358406 from the clang1000-import branch:
authorDimitry Andric <dim@FreeBSD.org>
Thu, 27 Feb 2020 19:59:17 +0000 (19:59 +0000)
committerDimitry Andric <dim@FreeBSD.org>
Thu, 27 Feb 2020 19:59:17 +0000 (19:59 +0000)
commit8af44ff88901bc1e37d2af55d690bed7acce891f
tree5a797a608f6cfbfc472fdeaf03a9bc6e1ddba3ac
parent43092b7d087dbbefed0bd481d320d1f8b1294cb3
parenta9e92640d0f61c713c5b6dd1bcbc6711fc973d89
Merge r358406 from the clang1000-import branch:

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