Path: blob/main/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/VE.h
35294 views
//===--- VE.h - VE-specific Tool Helpers ------------------------*- C++ -*-===//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//===----------------------------------------------------------------------===//78#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_VE_H9#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_VE_H1011#include "clang/Driver/Driver.h"12#include "llvm/ADT/StringRef.h"13#include "llvm/Option/Option.h"14#include <string>15#include <vector>1617namespace clang {18namespace driver {19namespace tools {20namespace ve {2122void getVETargetFeatures(const Driver &D, const llvm::opt::ArgList &Args,23std::vector<llvm::StringRef> &Features);2425} // end namespace ve26} // end namespace tools27} // end namespace driver28} // end namespace clang2930#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_VE_H313233