diff options
author | Sebastian Pop <spop@codeaurora.org> | 2012-01-04 19:47:22 +0000 |
---|---|---|
committer | Sebastian Pop <spop@codeaurora.org> | 2012-01-04 19:47:22 +0000 |
commit | 0f357d6c2240393b53d30cf79c2cd583192e5ed9 (patch) | |
tree | 642c100b83b81b7f83bfe293c75df67f1ebff3e3 /llvm/lib/Support/Windows/Host.inc | |
parent | aac3e06bf73214a1f44dd40e98c9930b759ded38 (diff) | |
download | bcm5719-llvm-0f357d6c2240393b53d30cf79c2cd583192e5ed9.tar.gz bcm5719-llvm-0f357d6c2240393b53d30cf79c2cd583192e5ed9.zip |
use getHostTriple instead of getDefaultTargetTriple in getClosestTargetForJIT
Get back getHostTriple.
For JIT compilation, use the host triple instead of the default
target: this fixes some JIT testcases that used to fail when the
compiler has been configured as a cross compiler.
llvm-svn: 147542
Diffstat (limited to 'llvm/lib/Support/Windows/Host.inc')
-rw-r--r-- | llvm/lib/Support/Windows/Host.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Support/Windows/Host.inc b/llvm/lib/Support/Windows/Host.inc index 2e6d6f19037..cce82349cd6 100644 --- a/llvm/lib/Support/Windows/Host.inc +++ b/llvm/lib/Support/Windows/Host.inc @@ -20,3 +20,7 @@ using namespace llvm; std::string sys::getDefaultTargetTriple() { return LLVM_DEFAULT_TARGET_TRIPLE; } + +std::string sys::getHostTriple() { + return LLVM_HOST_TRIPLE; +} |