LLD: Fix large integer implicitly truncated to unsigned type gcc warning

This fixes gcc warning.

Change by Brian Sumner

llvm-svn: 316365
This commit is contained in:
Konstantin Zhuravlyov 2017-10-23 19:31:31 +00:00
parent ed4a317c55
commit 70abb6e204
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ struct SectionPiece {
uint32_t InputOff;
uint32_t Hash;
uint64_t OutputOff : 63;
int64_t OutputOff : 63;
uint64_t Live : 1;
};