mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 12:34:35 +03:00
Suppress -Wbitwise-instead-of-logical warning that was introduced by clang 14
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
#include <stdio.h>
|
||||
|
||||
struct TestSettings {
|
||||
bool quiet;
|
||||
bool verbose;
|
||||
bool validate;
|
||||
};
|
||||
|
||||
@@ -73,7 +73,7 @@ public:
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!settings.quiet)
|
||||
if (settings.verbose)
|
||||
printf(" OK [%s] <- %s\n", encodedOpcode.data(), s);
|
||||
|
||||
passed++;
|
||||
|
||||
Reference in New Issue
Block a user