[lld] r285149 - Use uint32_t for consistency.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 25 17:58:23 PDT 2016


Author: rafael
Date: Tue Oct 25 19:58:23 2016
New Revision: 285149

URL: http://llvm.org/viewvc/llvm-project?rev=285149&view=rev
Log:
Use uint32_t for consistency.

Modified:
    lld/trunk/ELF/Symbols.h

Modified: lld/trunk/ELF/Symbols.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Symbols.h?rev=285149&r1=285148&r2=285149&view=diff
==============================================================================
--- lld/trunk/ELF/Symbols.h (original)
+++ lld/trunk/ELF/Symbols.h Tue Oct 25 19:58:23 2016
@@ -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;




More information about the llvm-commits mailing list