Remove usr.bin/clang/llvm-ar/llvm-cxxfilt-driver.cpp file

I accidentally copied this to the wrong place, or by accident to two
places, during the merge of llvmorg-17-init-19304-gd0b54bb50e51.

Fixes:		06c3fb2749
MFC after:	3 days
This commit is contained in:
Dimitry Andric 2024-02-10 22:00:05 +01:00
parent 41f9823eda
commit 4015c06420

View file

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