1218885Sdim//===- llvm/Support/Win32/Host.inc -------------------------------*- C++ -*-===//
2218885Sdim//
3218885Sdim//                     The LLVM Compiler Infrastructure
4218885Sdim//
5218885Sdim// This file is distributed under the University of Illinois Open Source
6218885Sdim// License. See LICENSE.TXT for details.
7218885Sdim//
8218885Sdim//===----------------------------------------------------------------------===//
9218885Sdim//
10218885Sdim// This file implements the Win32 Host support.
11218885Sdim//
12218885Sdim//===----------------------------------------------------------------------===//
13218885Sdim
14218885Sdim#include "Windows.h"
15218885Sdim#include <cstdio>
16218885Sdim#include <string>
17218885Sdim
18218885Sdimusing namespace llvm;
19218885Sdim
20234353Sdimstd::string sys::getDefaultTargetTriple() {
21234353Sdim  return LLVM_DEFAULT_TARGET_TRIPLE;
22218885Sdim}
23