diff options
Diffstat (limited to 'llvm/lib/Support/Windows/Host.inc')
-rw-r--r-- | llvm/lib/Support/Windows/Host.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/Windows/Host.inc b/llvm/lib/Support/Windows/Host.inc index 461fb7833b8..90a6fb31670 100644 --- a/llvm/lib/Support/Windows/Host.inc +++ b/llvm/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() { |