diff options
author | Alex Lorenz <arphaman@gmail.com> | 2017-07-07 10:08:52 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2017-07-07 10:08:52 +0000 |
commit | 215be39cab04ab6b11fc8f2898bd0c4380e50227 (patch) | |
tree | 9048e1aba4f9f85d7e0b979d6ab86f65ba84d350 /llvm/lib | |
parent | 8c4069e842c1d4fd923bb57eb477419c87bf630b (diff) | |
download | bcm5719-llvm-215be39cab04ab6b11fc8f2898bd0c4380e50227.tar.gz bcm5719-llvm-215be39cab04ab6b11fc8f2898bd0c4380e50227.zip |
Update the Windows version of updateTripleOSVersion to account for
changes in r307372
llvm-svn: 307377
Diffstat (limited to 'llvm/lib')
-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() { |