diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-03-29 01:08:53 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-03-29 01:08:53 +0000 |
commit | 37511ecea8e045a0db68d0f9ea1ca89b3143b83e (patch) | |
tree | 5fbac9010514e866152d9695d570dfce556dde76 /llvm/lib/Support/Windows/Host.inc | |
parent | ec3bbf4933d70fd1c907f883acd45da4ab1f10ee (diff) | |
download | bcm5719-llvm-37511ecea8e045a0db68d0f9ea1ca89b3143b83e.tar.gz bcm5719-llvm-37511ecea8e045a0db68d0f9ea1ca89b3143b83e.zip |
Windows: canonicalise the default windows triple
Canonicalise the default triple that is used on Windows. This should hopefully
fix the MSVC buildbots.
llvm-svn: 205070
Diffstat (limited to 'llvm/lib/Support/Windows/Host.inc')
-rw-r--r-- | llvm/lib/Support/Windows/Host.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Windows/Host.inc b/llvm/lib/Support/Windows/Host.inc index 7bda89dc49c..0c02bf93681 100644 --- a/llvm/lib/Support/Windows/Host.inc +++ b/llvm/lib/Support/Windows/Host.inc @@ -18,5 +18,5 @@ using namespace llvm; std::string sys::getDefaultTargetTriple() { - return LLVM_DEFAULT_TARGET_TRIPLE; + return Triple::normalize(LLVM_DEFAULT_TARGET_TRIPLE); } |