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