Fixed broken CI

This commit is contained in:
kobalicek
2020-06-01 10:16:33 +02:00
parent b73830c291
commit 0e04695f64
4 changed files with 25 additions and 10 deletions

View File

@@ -72,6 +72,7 @@ static void dumpCpu(void) noexcept {
// [CPU Features]
// --------------------------------------------------------------------------
#ifndef ASMJIT_NO_LOGGING
INFO("CPU Features:");
BaseFeatures::Iterator it(cpu.features().iterator());
while (it.hasNext()) {
@@ -81,6 +82,7 @@ static void dumpCpu(void) noexcept {
INFO(" %s\n", featureString.data());
};
INFO("");
#endif // !ASMJIT_NO_LOGGING
}
// ============================================================================