Fix alignment on obj_msgrefs to match llvm-gcc.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69199 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CGObjCMac.cpp b/lib/CodeGen/CGObjCMac.cpp
index e1b1491..90ef11e 100644
--- a/lib/CodeGen/CGObjCMac.cpp
+++ b/lib/CodeGen/CGObjCMac.cpp
@@ -4989,8 +4989,7 @@
                                    Name,
                                    &CGM.getModule());
     GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
-    GV->setAlignment(
-            CGM.getTargetData().getPrefTypeAlignment(ObjCTypes.MessageRefTy));
+    GV->setAlignment(16);
     GV->setSection("__DATA, __objc_msgrefs, coalesced");
     UsedGlobals.push_back(GV);
   }