diff options
author | Lang Hames <lhames@gmail.com> | 2016-01-20 22:16:14 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-01-20 22:16:14 +0000 |
commit | f129d6fb50ad6463795f5c7e3488f3efba10de28 (patch) | |
tree | 05ab106e4fc99a231d98a7afd6bc1fa6472ab9f3 | |
parent | 1030d68e48af73f45a38d1aa61a0720d2b4f08db (diff) | |
download | bcm5719-llvm-f129d6fb50ad6463795f5c7e3488f3efba10de28.tar.gz bcm5719-llvm-f129d6fb50ad6463795f5c7e3488f3efba10de28.zip |
[Orc] Try to turn Orc execution unit tests back on for Linux.
The fix in r258324 (plus r258354) should allow Orc execution tests to run on
Linux.
llvm-svn: 258358
-rw-r--r-- | llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h index f480e0789ae..5cc7071a866 100644 --- a/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h +++ b/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h @@ -46,7 +46,7 @@ public: if (TM) { // If we found a TargetMachine, check that it's one that Orc supports. const Triple& TT = TM->getTargetTriple(); - if (TT.getArch() != Triple::x86_64 || !TT.isOSDarwin()) + if (TT.getArch() != Triple::x86_64 || TT.isOSWindows()) TM = nullptr; } }; |