Fix 32-bit build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299169 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Peter Collingbourne 2017-03-31 02:32:53 +00:00
parent 9f482fc3fc
commit 0c34fa17ac

View File

@ -167,7 +167,7 @@ struct Symbol {
bool isFormatSpecific() const { return (Flags >> S::FB_format_specific) & 1; }
bool isUnnamedAddr() const { return (Flags >> S::FB_unnamed_addr) & 1; }
size_t getCommonSize() const {
uint64_t getCommonSize() const {
assert(isCommon());
return CommonSize;
}