diff options
-rw-r--r-- | llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h index 108e2755738..53fede18b13 100644 --- a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h +++ b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h @@ -61,6 +61,10 @@ public: // If we found a TargetMachine, check that it's one that Orc supports. const Triple& TT = TM->getTargetTriple(); + // Bail out for windows platforms. We do not support these yet. + if (TT.isOSWindows()) + return; + // Target can JIT? SupportsJIT = TM->getTarget().hasJIT(); // Use ability to create callback manager to detect whether Orc |