forked from OSchip/llvm-project
[Support] Turn on SupportTest for Apple Silicon
Follow up for D106012, turn on unittest for Host on Apple Silicon. Reviewed By: dexonsmith Differential Revision: https://reviews.llvm.org/D106020
This commit is contained in:
parent
0c7a4870c5
commit
483df57313
|
@ -39,7 +39,7 @@ protected:
|
|||
// physical cores, which is currently only supported/tested on
|
||||
// some systems.
|
||||
return (Host.isOSWindows() && llvm_is_multithreaded()) ||
|
||||
(Host.isX86() && (Host.isOSDarwin() || Host.isOSLinux())) ||
|
||||
Host.isOSDarwin() || (Host.isX86() && Host.isOSLinux()) ||
|
||||
(Host.isPPC64() && Host.isOSLinux()) ||
|
||||
(Host.isSystemZ() && (Host.isOSLinux() || Host.isOSzOS()));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue