git: 4015c064200e - main - Remove usr.bin/clang/llvm-ar/llvm-cxxfilt-driver.cpp file
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 10 Feb 2024 21:03:38 UTC
The branch main has been updated by dim:
URL: https://cgit.FreeBSD.org/src/commit/?id=4015c064200e643ab110cdf831064c3c73f31b73
commit 4015c064200e643ab110cdf831064c3c73f31b73
Author: Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2024-02-10 21:00:05 +0000
Commit: Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2024-02-10 21:02:45 +0000
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: 06c3fb2749bd
MFC after: 3 days
---
usr.bin/clang/llvm-ar/llvm-cxxfilt-driver.cpp | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/usr.bin/clang/llvm-ar/llvm-cxxfilt-driver.cpp b/usr.bin/clang/llvm-ar/llvm-cxxfilt-driver.cpp
deleted file mode 100644
index 3ed6f501327f..000000000000
--- a/usr.bin/clang/llvm-ar/llvm-cxxfilt-driver.cpp
+++ /dev/null
@@ -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});
-}