forked from OSchip/llvm-project
Driver/ToolChains: Mips -> MipsLinux
- Mips is architecture, not a toolchain - Might help eliminate the confusion in the future by not having header files with the same name Differential Revision: https://reviews.llvm.org/D30753 llvm-svn: 297312
This commit is contained in:
parent
5d698cf9a0
commit
e37b32c433
|
@ -44,7 +44,7 @@ add_clang_library(clangDriver
|
|||
ToolChains/Haiku.cpp
|
||||
ToolChains/Hexagon.cpp
|
||||
ToolChains/Linux.cpp
|
||||
ToolChains/Mips.cpp
|
||||
ToolChains/MipsLinux.cpp
|
||||
ToolChains/MinGW.cpp
|
||||
ToolChains/Minix.cpp
|
||||
ToolChains/MSVC.cpp
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "ToolChains/Linux.h"
|
||||
#include "ToolChains/MinGW.h"
|
||||
#include "ToolChains/Minix.h"
|
||||
#include "ToolChains/Mips.h"
|
||||
#include "ToolChains/MipsLinux.h"
|
||||
#include "ToolChains/MSVC.h"
|
||||
#include "ToolChains/Myriad.h"
|
||||
#include "ToolChains/NaCl.h"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "Mips.h"
|
||||
#include "MipsLinux.h"
|
||||
#include "Arch/Mips.h"
|
||||
#include "CommonArgs.h"
|
||||
#include "clang/Config/config.h"
|
|
@ -7,8 +7,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MIPS_H
|
||||
#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MIPS_H
|
||||
#ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MIPS_LINUX_H
|
||||
#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MIPS_LINUX_H
|
||||
|
||||
#include "Linux.h"
|
||||
#include "clang/Driver/ToolChain.h"
|
||||
|
@ -59,4 +59,4 @@ private:
|
|||
} // end namespace driver
|
||||
} // end namespace clang
|
||||
|
||||
#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MIPS_H
|
||||
#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_MIPS_LINUX_H
|
Loading…
Reference in New Issue