From 211a1ae6468d730a835b448eb50f2877bf621233 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Tue, 17 Feb 2015 19:51:15 +0000 Subject: [PATCH] Remove the ABI from the target features. It's obsoleted by 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 | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 683c7ece26..e6fb097f45 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -1161,9 +1161,6 @@ void PPCTargetInfo::getDefaultFeatures(llvm::StringMap &Features) const { .Default(false); Features["qpx"] = (CPU == "a2q"); - - if (!ABI.empty()) - Features[ABI] = true; } bool PPCTargetInfo::hasFeature(StringRef Feature) const { -- 2.50.1