//===--- CodeGenOptions.cpp - Shared codegen option handling --------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "llvm/Frontend/Driver/CodeGenOptions.h" #include "llvm/Analysis/TargetLibraryInfo.h" #include "llvm/TargetParser/Triple.h" namespace llvm::driver { TargetLibraryInfoImpl *createTLII(llvm::Triple &TargetTriple, driver::VectorLibrary Veclib) { … } } // namespace llvm::driver