Move types back to the 2.5 API.
[oota-llvm.git] / lib / Target / PowerPC / PPCSubtarget.h
index 176f3e19477a31f36403bd7dd7c52ce16061176a..f633cc6d2da4c2f9bc385f24a36d5ac0b1548ee9 100644 (file)
@@ -148,8 +148,8 @@ public:
   /// getDarwinVers - Return the darwin version number, 8 = tiger, 9 = leopard.
   unsigned getDarwinVers() const { return DarwinVers; }
 
-  bool isMachoABI() const { return isDarwin() || IsPPC64; }
-  bool isELF32_ABI() const { return !isDarwin() && !IsPPC64; }
+  bool isDarwinABI() const { return isDarwin() || IsPPC64; }
+  bool isSVR4ABI() const { return !isDarwin() && !IsPPC64; }
 
   unsigned getAsmFlavor() const {
     return AsmFlavor != Unset ? unsigned(AsmFlavor) : 0;