opnsense-src/usr.bin/clang/llvm-readobj/llvm-readobj-driver.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
679 B
C++
Raw Normal View History

//===-- driver-template.cpp -----------------------------------------------===//
2009-06-02 13:58:47 -04:00
//
// 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
2009-06-02 13:58:47 -04:00
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/LLVMDriver.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/Support/InitLLVM.h"
2009-06-02 13:58:47 -04:00
int llvm_readobj_main(int argc, char **, const llvm::ToolContext &);
int main(int argc, char **argv) {
llvm::InitLLVM X(argc, argv);
return llvm_readobj_main(argc, argv, {argv[0], nullptr, false});
2009-06-02 13:58:47 -04:00
}