[llvm] r307377 - Update the Windows version of updateTripleOSVersion to account for

Alex Lorenz via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 7 03:08:52 PDT 2017


Author: arphaman
Date: Fri Jul  7 03:08:52 2017
New Revision: 307377

URL: http://llvm.org/viewvc/llvm-project?rev=307377&view=rev
Log:
Update the Windows version of updateTripleOSVersion to account for
changes in r307372

Modified:
    llvm/trunk/lib/Support/Windows/Host.inc

Modified: llvm/trunk/lib/Support/Windows/Host.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Host.inc?rev=307377&r1=307376&r2=307377&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/Host.inc (original)
+++ llvm/trunk/lib/Support/Windows/Host.inc Fri Jul  7 03:08:52 2017
@@ -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() {




More information about the llvm-commits mailing list