[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.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258358 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames 2016-01-20 22:16:14 +00:00
parent 3e3c823bc5
commit 8b56868097

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.isOSDarwin())
if (TT.getArch() != Triple::x86_64 || TT.isOSWindows())
TM = nullptr;
}
};