blob: 2f00f97da3710ca84db5b6b54006fce39ea1f43a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//===-- driver-template.cpp -----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/LLVMDriver.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/Support/InitLLVM.h"
int llvm_ar_main(int argc, char **, const llvm::ToolContext &);
int main(int argc, char **argv) {
llvm::InitLLVM X(argc, argv);
return llvm_ar_main(argc, argv, {argv[0], nullptr, false});
}
|