mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
This contains many improvements, primarily better C++ support, an integrated assembler for x86 and support for -pg.
23 lines
660 B
C++
23 lines
660 B
C++
//===- llvm/Support/Win32/Host.inc -------------------------------*- C++ -*-===//
|
|
//
|
|
// 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"
|
|
#include <cstdio>
|
|
#include <string>
|
|
|
|
using namespace llvm;
|
|
|
|
std::string sys::getHostTriple() {
|
|
// FIXME: Adapt to running version.
|
|
return LLVM_HOSTTRIPLE;
|
|
}
|