[ORC] Restore the narrower check from before r328687.

This should get the builders green again while I investigate why r328706 was
insufficient.

llvm-svn: 328711
This commit is contained in:
Lang Hames 2018-03-28 15:58:14 +00:00
parent 2456ac696a
commit da5c6acfe9
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,8 @@ public:
const Triple& TT = TM->getTargetTriple(); const Triple& TT = TM->getTargetTriple();
// Bail out for windows platforms. We do not support these yet. // Bail out for windows platforms. We do not support these yet.
if (TT.isOSWindows()) if ((TT.getArch() != Triple::x86_64 && TT.getArch() != Triple::x86) ||
TT.isOSWindows())
return; return;
// Target can JIT? // Target can JIT?