VE.cpp 818 B

12345678910111213141516171819202122
  1. //===--- VE.cpp - Tools Implementations -------------------------*- 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-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #include "VE.h"
  9. #include "clang/Driver/Driver.h"
  10. #include "clang/Driver/DriverDiagnostic.h"
  11. #include "clang/Driver/Options.h"
  12. #include "llvm/ADT/StringSwitch.h"
  13. #include "llvm/Option/ArgList.h"
  14. using namespace clang::driver;
  15. using namespace clang::driver::tools;
  16. using namespace clang;
  17. using namespace llvm::opt;
  18. void ve::getVETargetFeatures(const Driver &D, const ArgList &Args,
  19. std::vector<StringRef> &Features) {}