diff options
author | Lang Hames <lhames@gmail.com> | 2016-01-18 01:51:51 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-01-18 01:51:51 +0000 |
commit | e4be3c82c043e29d04dab56c0e1d0f80ca583deb (patch) | |
tree | 366b4893cb992158ad252603eb158f665d357524 | |
parent | 1c395077726d5ba6e205ca478df6d24da9fe737e (diff) | |
download | bcm5719-llvm-e4be3c82c043e29d04dab56c0e1d0f80ca583deb.tar.gz bcm5719-llvm-e4be3c82c043e29d04dab56c0e1d0f80ca583deb.zip |
[Orc] Revert r258031 - it broke the builders.
llvm-svn: 258034
-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 5cc7071a866..f480e0789ae 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.isOSWindows()) + if (TT.getArch() != Triple::x86_64 || !TT.isOSDarwin()) TM = nullptr; } }; |