]> granicus.if.org Git - clang/commitdiff
Remove the ABI from the target features. It's obsoleted by
authorEric Christopher <echristo@gmail.com>
Tue, 17 Feb 2015 19:51:15 +0000 (19:51 +0000)
committerEric Christopher <echristo@gmail.com>
Tue, 17 Feb 2015 19:51:15 +0000 (19:51 +0000)
the -target-abi use and those features don't exist anymore.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@229526 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Basic/Targets.cpp

index 683c7ece2608860ad5628cf4d942cfe665333f5b..e6fb097f45eac15b35b4db491285bf9c2af9ee10 100644 (file)
@@ -1161,9 +1161,6 @@ void PPCTargetInfo::getDefaultFeatures(llvm::StringMap<bool> &Features) const {
     .Default(false);
 
   Features["qpx"] = (CPU == "a2q");
-
-  if (!ABI.empty())
-    Features[ABI] = true;
 }
 
 bool PPCTargetInfo::hasFeature(StringRef Feature) const {