2011-02-20 12:57:14 +00:00
|
|
|
//===- llvm/Support/Win32/Host.inc -------------------------------*- C++ -*-===//
|
2009-06-02 17:52:33 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "Windows.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
std::string sys::getDefaultTargetTriple() {
|
|
|
|
return LLVM_DEFAULT_TARGET_TRIPLE;
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|