freebsd-dev/contrib/llvm/lib/Support/Windows/Host.inc

23 lines
642 B
PHP
Raw Normal View History

//===- 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.
//
//===----------------------------------------------------------------------===//
#include "Windows.h"
2009-06-02 17:52:33 +00:00
#include <cstdio>
#include <string>
using namespace llvm;
std::string sys::getDefaultTargetTriple() {
return LLVM_DEFAULT_TARGET_TRIPLE;
2009-06-02 17:52:33 +00:00
}