2010-11-29 20:44:50 +01:00
|
|
|
//===- llvm/Support/Win32/Host.inc -------------------------------*- C++ -*-===//
|
2008-10-02 03:17:28 +02: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 19:16:10 +01:00
|
|
|
#include "Windows.h"
|
2008-10-02 03:17:28 +02:00
|
|
|
#include <cstdio>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-03-31 19:30:15 +02:00
|
|
|
std::string sys::getHostTriple() {
|
|
|
|
// FIXME: Adapt to running version.
|
|
|
|
return LLVM_HOSTTRIPLE;
|
2008-10-02 03:17:28 +02:00
|
|
|
}
|