Path: blob/main/contrib/llvm-project/llvm/utils/TableGen/llvm-min-tblgen.cpp
213766 views
//===- llvm-min-tblgen.cpp ------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file contains the main function for LLVM's TableGen.9//10//===----------------------------------------------------------------------===//1112#include "Basic/TableGen.h"1314/// Command line parameters are shared between llvm-tblgen and llvm-min-tblgen.15/// The indirection to tblgen_main exists to ensure that the static variables16/// for the llvm::cl:: mechanism are linked into both executables.17int main(int argc, char **argv) { return tblgen_main(argc, argv); }181920