]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/include/llvm/CompilerDriver/Main.inc
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / contrib / llvm / include / llvm / CompilerDriver / Main.inc
1 //===--- Main.inc - The LLVM Compiler Driver --------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open
6 // Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  Default main() for the driver executable.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_INCLUDE_COMPILER_DRIVER_MAIN_INC
15 #define LLVM_INCLUDE_COMPILER_DRIVER_MAIN_INC
16
17 #include "llvm/CompilerDriver/Main.h"
18
19 int main(int argc, char** argv) {
20   return llvmc::Main(argc, argv);
21 }
22
23 #endif // LLVM_INCLUDE_COMPILER_DRIVER_MAIN_INC