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:
Chris Lattner
2006-07-15 01:24:23 +00:00
parent fb5115e84c
commit ba4733d901
5 changed files with 2 additions and 169 deletions

View File

@ -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
}