More objc2's API chanes.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63878 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CGObjCMac.cpp b/lib/CodeGen/CGObjCMac.cpp
index 0276084..4d4d130 100644
--- a/lib/CodeGen/CGObjCMac.cpp
+++ b/lib/CodeGen/CGObjCMac.cpp
@@ -4316,7 +4316,9 @@
       Name += "objc_msgSend_stret_fixup";
     }
   }
-  else if (ResultType->isFloatingType()) {
+  else if (ResultType->isFloatingType() &&
+           // Selection of frret API only happens in 32bit nonfragile ABI.
+           CGM.getTargetData().getTypePaddedSize(ObjCTypes.LongTy) == 4) {
     Fn = ObjCTypes.MessageSendFpretFixupFn;
     Name += "objc_msgSend_fpret_fixup";
   }