2010-08-15 09:07:12 +02:00
|
|
|
//===--- Main.h - The LLVM Compiler Driver ----------------------*- C++ -*-===//
|
2008-03-23 09:57:20 +01:00
|
|
|
//
|
|
|
|
// 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
|
|
|
// Entry point for the driver executable.
|
2008-03-23 09:57:20 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-08-15 09:07:12 +02:00
|
|
|
#ifndef LLVM_INCLUDE_COMPILER_DRIVER_MAIN_H
|
|
|
|
#define LLVM_INCLUDE_COMPILER_DRIVER_MAIN_H
|
|
|
|
|
|
|
|
namespace llvmc {
|
|
|
|
int Main(int argc, char** argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LLVM_INCLUDE_COMPILER_DRIVER_MAIN_H
|