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 | 8a86887ba3dcf59ddfd1d26bd2af1ac9c6bed76a (patch) | |
tree | d063101aa566588fde106548beed730b9023ced8 /lib/Support/Windows/Host.inc | |
parent | b0e7af779732c5ff3c054c837a4b04ad6089d0ac (diff) | |
download | external_llvm-8a86887ba3dcf59ddfd1d26bd2af1ac9c6bed76a.zip external_llvm-8a86887ba3dcf59ddfd1d26bd2af1ac9c6bed76a.tar.gz external_llvm-8a86887ba3dcf59ddfd1d26bd2af1ac9c6bed76a.tar.bz2 |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147542 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Windows/Host.inc')
-rw-r--r-- | lib/Support/Windows/Host.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Support/Windows/Host.inc b/lib/Support/Windows/Host.inc index 2e6d6f1..cce8234 100644 --- a/lib/Support/Windows/Host.inc +++ b/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; +} |