Rather than duplicating the getPointerSize code just call getPointerSize.
authorDuncan Sands <baldrick@free.fr>
Mon, 29 Oct 2012 12:19:04 +0000 (12:19 +0000)
committerDuncan Sands <baldrick@free.fr>
Mon, 29 Oct 2012 12:19:04 +0000 (12:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166923 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/DataLayout.h

index d778556684c3d511e79dffc5cf29a85ee9cd0962..dfacd9f32ae1b1e17d037a8dfa590cdf9b5800f9 100644 (file)
@@ -256,11 +256,7 @@ public:
   }
   /// Layout pointer size, in bits
   unsigned getPointerSizeInBits(unsigned AS)    const {
-    DenseMap<unsigned, PointerAlignElem>::const_iterator val = Pointers.find(AS);
-    if (val == Pointers.end()) {
-      val = Pointers.find(0);
-    }
-    return 8*val->second.TypeBitWidth;
+    return getPointerSize(AS) * 8;
   }
   /// Layout pointer size, in bits, based on the type.
   /// If this function is called with a pointer type, then