Fix an obvious typo that's preventing x86 (32-bit) from using .literal16.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135535 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/TargetLoweringObjectFileImpl.cpp b/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
index a3c5620..7ec31b8 100644
--- a/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
+++ b/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
@@ -574,7 +574,7 @@
   // to using it in -static mode.
   SixteenByteConstantSection = 0;
   if (TM.getRelocationModel() != Reloc::Static &&
-      TM.getTargetData()->getPointerSize() == 32)
+      TM.getTargetData()->getPointerSizeInBits() == 32)
     SixteenByteConstantSection =   // .literal16
       getContext().getMachOSection("__TEXT", "__literal16",
                                    MCSectionMachO::S_16BYTE_LITERALS,