[ELF] Change type of `OutputSection::setType()` argument to int64_t

Type of `OutputSection::_type` field is int64_t. This change makes
the field's and the argument's types consistent and allows to assign
full range of values to the `OutputSection::_type` field.

llvm-svn: 233617
This commit is contained in:
Simon Atanasyan 2015-03-30 22:36:01 +00:00
parent d484653fed
commit 2693b5a36c
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ public:
void setFlag(uint64_t flags) { _flags = flags; }
void setType(int16_t type) { _type = type; }
void setType(int64_t type) { _type = type; }
range<ChunkIter> sections() { return _sections; }