Apply 'make format'

This commit is contained in:
github action 2026-02-20 15:57:19 +00:00 committed by Matthew Ballance
parent bb37a44b50
commit 11b070c387
2 changed files with 7 additions and 4 deletions

View File

@ -122,9 +122,12 @@ set(CXX ${CMAKE_CXX_COMPILER})
set(AR ${CMAKE_AR})
# Detect precompiled header include flag (matches configure.ac logic)
execute_process(COMMAND ${CMAKE_CXX_COMPILER} --help
OUTPUT_VARIABLE _cxx_help OUTPUT_STRIP_TRAILING_WHITESPACE
ERROR_QUIET)
execute_process(
COMMAND ${CMAKE_CXX_COMPILER} --help
OUTPUT_VARIABLE _cxx_help
OUTPUT_STRIP_TRAILING_WHITESPACE
ERROR_QUIET
)
if(_cxx_help MATCHES "include-pch")
# clang
set(CFG_CXXFLAGS_PCH_I "-include-pch")

View File

@ -48,6 +48,6 @@ for filename in sorted(hit.keys()):
and not re.search(r'_sc', filename) and not re.search(r'_fst', filename)
and not re.search(r'_saif', filename) and not re.search(r'_thread', filename)
and (not re.search(r'_timing', filename) or test.have_coroutines)):
test.error("Include file not covered by t_verilated_all test: " + filename)
test.error("Include file not covered by t_verilated_all test: ", filename)
test.passes()