aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/Windows/Host.inc
blob: 5377c77f03780e7639435ff0b9a02e4cb0112e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//===- llvm/System/Win32/Host.inc -------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the Win32 Host support.
//
//===----------------------------------------------------------------------===//

#include "Windows.h"
#include <cstdio>
#include <string>

using namespace llvm;

std::string sys::getHostTriple() {
  // FIXME: Adapt to running version.
  return LLVM_HOSTTRIPLE;
}