projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3f591a
)
[Orc] Disable Orc C API unit tests on non-Darwin while I investigate more
author
Lang Hames
<lhames@gmail.com>
Wed, 28 Oct 2015 03:12:51 +0000
(
03:12
+0000)
committer
Lang Hames
<lhames@gmail.com>
Wed, 28 Oct 2015 03:12:51 +0000
(
03:12
+0000)
builder failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251484
91177308
-0d34-0410-b5e6-
96231b3b80d8
unittests/ExecutionEngine/Orc/OrcTestCommon.h
patch
|
blob
|
history
diff --git
a/unittests/ExecutionEngine/Orc/OrcTestCommon.h
b/unittests/ExecutionEngine/Orc/OrcTestCommon.h
index
18e3874
..
d738949
100644
(file)
--- a/
unittests/ExecutionEngine/Orc/OrcTestCommon.h
+++ b/
unittests/ExecutionEngine/Orc/OrcTestCommon.h
@@
-46,7
+46,7
@@
public:
const Triple& TT = TM->getTargetTriple();
- if (TT.getArch() == Triple::x86_64)
+ if (TT.getArch() == Triple::x86_64
&& TT.isOSDarwin()
)
return std::move(TM);
return nullptr;