[Orc] Revert r258031 - it broke the builders.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258034 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames 2016-01-18 01:51:51 +00:00
parent 33a5a6f04c
commit 9bbd5f24d3

View File

@ -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;
}
};