Home | History | Annotate | Line # | Download | only in Arch
      1  1.1  joerg //===--- VE.cpp - Tools Implementations -------------------------*- C++ -*-===//
      2  1.1  joerg //
      3  1.1  joerg // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
      4  1.1  joerg // See https://llvm.org/LICENSE.txt for license information.
      5  1.1  joerg // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
      6  1.1  joerg //
      7  1.1  joerg //===----------------------------------------------------------------------===//
      8  1.1  joerg 
      9  1.1  joerg #include "VE.h"
     10  1.1  joerg #include "clang/Driver/Driver.h"
     11  1.1  joerg #include "clang/Driver/DriverDiagnostic.h"
     12  1.1  joerg #include "clang/Driver/Options.h"
     13  1.1  joerg #include "llvm/ADT/StringSwitch.h"
     14  1.1  joerg #include "llvm/Option/ArgList.h"
     15  1.1  joerg 
     16  1.1  joerg using namespace clang::driver;
     17  1.1  joerg using namespace clang::driver::tools;
     18  1.1  joerg using namespace clang;
     19  1.1  joerg using namespace llvm::opt;
     20  1.1  joerg 
     21  1.1  joerg void ve::getVETargetFeatures(const Driver &D, const ArgList &Args,
     22  1.1  joerg                              std::vector<StringRef> &Features) {}
     23