summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/include/llvm/Object/IRSymtab.h2
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;
}
OpenPOWER on IntegriCloud