mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Remove what little AIX support we have. It has never been tested and isn't
complete. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29156 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -66,7 +66,6 @@ PPCSubtarget::PPCSubtarget(const Module &M, const std::string &FS, bool is64Bit)
|
||||
, HasAltivec(false)
|
||||
, HasFSQRT(false)
|
||||
, HasSTFIWX(false)
|
||||
, IsAIX(false)
|
||||
, IsDarwin(false) {
|
||||
|
||||
// Determine default and user specified characteristics
|
||||
@ -102,12 +101,8 @@ PPCSubtarget::PPCSubtarget(const Module &M, const std::string &FS, bool is64Bit)
|
||||
const std::string& TT = M.getTargetTriple();
|
||||
if (TT.length() > 5) {
|
||||
IsDarwin = TT.find("-darwin") != std::string::npos;
|
||||
if (!IsDarwin)
|
||||
IsAIX = TT.find("-aix") != std::string::npos;
|
||||
} else if (TT.empty()) {
|
||||
#if defined(_POWER)
|
||||
IsAIX = true;
|
||||
#elif defined(__APPLE__)
|
||||
#if defined(__APPLE__)
|
||||
IsDarwin = true;
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user