offsetof always has type size_t.
authorDan Gohman <gohman@apple.com>
Thu, 18 Mar 2010 19:37:35 +0000 (19:37 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 18 Mar 2010 19:37:35 +0000 (19:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98854 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/Allocator.h

index cdb0fc85582193f4964d1ff991e5009af7adda79..b1f59dc05e7bb892cb2c2c614efc2140c10170dc 100644 (file)
@@ -193,7 +193,7 @@ inline void *operator new(size_t Size, llvm::BumpPtrAllocator &Allocator) {
 #endif
   };
   return Allocator.Allocate(Size, std::min((size_t)llvm::NextPowerOf2(Size),
-                                           (size_t)offsetof(S, x)));
+                                           offsetof(S, x)));
 }
 
 #endif // LLVM_SUPPORT_ALLOCATOR_H