opnsense-src/usr.bin/clang/llvm-objdump/llvm-objdump-driver.cpp
Dimitry Andric 5f757f3ff9 Merge llvm-project main llvmorg-18-init-15088-gd14ee76181fb
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and
openmp to llvm-project main llvmorg-18-init-15088-gd14ee76181fb.

PR:		276104
MFC after:	1 month
2024-04-06 22:11:55 +02:00

16 lines
612 B
C++

//===-- 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"
int llvm_objdump_main(int argc, char **, const llvm::ToolContext &);
int main(int argc, char **argv) {
return llvm_objdump_main(argc, argv, {argv[0], nullptr, false});
}