diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2017-03-31 02:32:53 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2017-03-31 02:32:53 +0000 |
commit | 1f7fa72f82c9eb002d2caea56e110587ffdba1d4 (patch) | |
tree | 2f5bd77956cece7829e44e85689234baf57c5b80 | |
parent | d9717aa0e420e931d79d85867e06afe3c3e625b0 (diff) | |
download | bcm5719-llvm-1f7fa72f82c9eb002d2caea56e110587ffdba1d4.tar.gz bcm5719-llvm-1f7fa72f82c9eb002d2caea56e110587ffdba1d4.zip |
Fix 32-bit build.
llvm-svn: 299169
-rw-r--r-- | llvm/include/llvm/Object/IRSymtab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Object/IRSymtab.h b/llvm/include/llvm/Object/IRSymtab.h index d3129b2db69..7ce6fa50e6d 100644 --- a/llvm/include/llvm/Object/IRSymtab.h +++ b/llvm/include/llvm/Object/IRSymtab.h @@ -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; } |