From: Dan Gohman Date: Thu, 25 Feb 2010 15:55:28 +0000 (+0000) Subject: Add more information to the getSizeOf comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a5a23046cbea6d011f84c97ac61743cb8f6a58c6;p=oota-llvm.git Add more information to the getSizeOf comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97140 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index c706329fb28..1cebb201518 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -698,8 +698,9 @@ public: /// independent way (Note: the return type is an i64). static Constant *getAlignOf(const Type* Ty); - /// getSizeOf constant expr - computes the size of a type in a target - /// independent way (Note: the return type is an i64). + /// getSizeOf constant expr - computes the (alloc) size of a type (in + /// address-units, not bits) in a target independent way (Note: the return + /// type is an i64). /// static Constant *getSizeOf(const Type* Ty);