18 lines
594 B
C++
18 lines
594 B
C++
//===- tools/lld/lld.cpp - Linker Driver Dispatcher ---------------------===//
|
|
//
|
|
// The LLVM Linker
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This is the entry point to the lld driver. This is a thin wrapper which
|
|
// dispatches to the given platform specific driver.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
int main(int argc, char **argv) {
|
|
return 0;
|
|
}
|