2010-11-30 03:44:50 +08:00
|
|
|
//===- llvm/Support/Win32/Host.inc -------------------------------*- C++ -*-===//
|
2008-10-02 09:17:28 +08: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "Windows.h"
|
2011-10-15 12:29:36 +08:00
|
|
|
#include <cstdio>
|
|
|
|
#include <string>
|
2008-10-02 09:17:28 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2011-11-02 05:32:20 +08:00
|
|
|
std::string sys::getDefaultTargetTriple() {
|
2011-11-02 05:31:44 +08:00
|
|
|
return LLVM_DEFAULT_TARGET_TRIPLE;
|
2008-10-02 09:17:28 +08:00
|
|
|
}
|