We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ced1d0f + 2466031 commit 907947eCopy full SHA for 907947e
llvm/unittests/Support/Host.cpp
@@ -39,7 +39,7 @@ class HostTest : public testing::Test {
39
// physical cores, which is currently only supported/tested on
40
// some systems.
41
return (Host.isOSWindows() && llvm_is_multithreaded()) ||
42
- (Host.isX86() && (Host.isOSDarwin() || Host.isOSLinux())) ||
+ Host.isOSDarwin() || (Host.isX86() && Host.isOSLinux()) ||
43
(Host.isPPC64() && Host.isOSLinux()) ||
44
(Host.isSystemZ() && (Host.isOSLinux() || Host.isOSzOS()));
45
}
0 commit comments