Author: echristo
Date: Tue Feb 17 13:51:15 2015
New Revision: 229526

URL: http://llvm.org/viewvc/llvm-project?rev=229526&view=rev
Log:
Remove the ABI from the target features. It's obsoleted by
the -target-abi use and those features don't exist anymore.

Modified:
    cfe/trunk/lib/Basic/Targets.cpp

Modified: cfe/trunk/lib/Basic/Targets.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/Targets.cpp?rev=229526&r1=229525&r2=229526&view=diff
==============================================================================
--- cfe/trunk/lib/Basic/Targets.cpp (original)
+++ cfe/trunk/lib/Basic/Targets.cpp Tue Feb 17 13:51:15 2015
@@ -1161,9 +1161,6 @@ void PPCTargetInfo::getDefaultFeatures(l
     .Default(false);
 
   Features["qpx"] = (CPU == "a2q");
-
-  if (!ABI.empty())
-    Features[ABI] = true;
 }
 
 bool PPCTargetInfo::hasFeature(StringRef Feature) const {


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to