[docs] Fix build-docs.sh
[llvm-project.git] / clang / lib / Driver / ToolChains / PPCLinux.h
blobe0318ae8a3a2a1c9422d03e1a269a960e8b42c2a
1 //===--- PPCLinux.h - PowerPC ToolChain 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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_PPC_LINUX_H
10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_PPC_LINUX_H
12 #include "Linux.h"
14 namespace clang {
15 namespace driver {
16 namespace toolchains {
18 class LLVM_LIBRARY_VISIBILITY PPCLinuxToolChain : public Linux {
19 public:
20 PPCLinuxToolChain(const Driver &D, const llvm::Triple &Triple,
21 const llvm::opt::ArgList &Args);
23 void
24 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
25 llvm::opt::ArgStringList &CC1Args) const override;
27 private:
28 bool SupportIEEEFloat128(const Driver &D, const llvm::Triple &Triple,
29 const llvm::opt::ArgList &Args) const;
32 } // end namespace toolchains
33 } // end namespace driver
34 } // end namespace clang
36 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_PPC_LINUX_H