From: Rafael Espindola Date: Wed, 26 Oct 2016 00:58:23 +0000 (+0000) Subject: Use uint32_t for consistency. X-Git-Tag: llvmorg-4.0.0-rc1~6282 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ae21772627a6ce81ad0527640db55daf59bc999;p=platform%2Fupstream%2Fllvm.git Use uint32_t for consistency. llvm-svn: 285149 --- diff --git a/lld/ELF/Symbols.h b/lld/ELF/Symbols.h index 9c6da02..8c2edb2 100644 --- a/lld/ELF/Symbols.h +++ b/lld/ELF/Symbols.h @@ -97,7 +97,7 @@ public: // The file from which this symbol was created. InputFile *File = nullptr; - unsigned DynsymIndex = 0; + uint32_t DynsymIndex = 0; uint32_t GotIndex = -1; uint32_t GotPltIndex = -1; uint32_t PltIndex = -1;