32 lines · c
1//===--- VE.h - VE-specific Tool Helpers ------------------------*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_VE_H10#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_VE_H11 12#include "clang/Driver/Driver.h"13#include "llvm/ADT/StringRef.h"14#include "llvm/Option/Option.h"15#include <string>16#include <vector>17 18namespace clang {19namespace driver {20namespace tools {21namespace ve {22 23void getVETargetFeatures(const Driver &D, const llvm::opt::ArgList &Args,24 std::vector<llvm::StringRef> &Features);25 26} // end namespace ve27} // end namespace tools28} // end namespace driver29} // end namespace clang30 31#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_ARCH_VE_H32