2009-03-02 10:03:02 +01:00
|
|
|
//===--- Main.inc - The LLVM Compiler Driver --------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open
|
|
|
|
// Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-08-15 09:07:12 +02:00
|
|
|
// Default main() for the driver executable.
|
2009-06-30 02:15:24 +02:00
|
|
|
//
|
2009-03-02 10:03:02 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_INCLUDE_COMPILER_DRIVER_MAIN_INC
|
|
|
|
#define LLVM_INCLUDE_COMPILER_DRIVER_MAIN_INC
|
|
|
|
|
2010-08-15 09:07:12 +02:00
|
|
|
#include "llvm/CompilerDriver/Main.h"
|
2009-03-02 10:03:02 +01:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2009-06-30 02:15:24 +02:00
|
|
|
return llvmc::Main(argc, argv);
|
2009-03-02 10:03:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LLVM_INCLUDE_COMPILER_DRIVER_MAIN_INC
|