LLVM API Documentation
00001 //===- llvm/Support/Win32/Host.inc -------------------------------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file implements the Win32 Host support. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #include "WindowsSupport.h" 00015 #include <cstdio> 00016 #include <string> 00017 00018 using namespace llvm; 00019 00020 std::string sys::getDefaultTargetTriple() { 00021 return Triple::normalize(LLVM_DEFAULT_TARGET_TRIPLE); 00022 }