forked from OSchip/llvm-project
[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:
parent
2456ac696a
commit
da5c6acfe9
|
@ -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?
|
||||||
|
|
Loading…
Reference in New Issue