From 9976ad92c3d6d62224472c0dd95c6f0746b156b5 Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Fri, 7 Jul 2017 10:08:52 +0000 Subject: [PATCH] Update the Windows version of updateTripleOSVersion to account for changes in r307372 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@307377 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Windows/Host.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Support/Windows/Host.inc b/lib/Support/Windows/Host.inc index 461fb7833b8..90a6fb31670 100644 --- a/lib/Support/Windows/Host.inc +++ b/lib/Support/Windows/Host.inc @@ -17,8 +17,8 @@ using namespace llvm; -static void updateTripleOSVersion(std::string &) { - // Do nothing. +static std::string updateTripleOSVersion(std::string Triple) { + return Triple; } std::string sys::getDefaultTargetTriple() { -- 2.40.0