| commit | 8b8e5216af9b45caf068f3a75e8638b6218355ef | [log] [tgz] |
|---|---|---|
| author | Rui Ueyama <ruiu@google.com> | Tue Oct 08 03:59:45 2013 +0000 |
| committer | Rui Ueyama <ruiu@google.com> | Tue Oct 08 03:59:45 2013 +0000 |
| tree | 9f00c003f08c976c8ec820f1e0b202a36cacf22e | |
| parent | 7a633b4de5b54a7206ed96151403f3562df958a1 [diff] [blame] |
Make bitmask an unsigned type. llvm-svn: 192163
diff --git a/lld/lib/Core/LinkingContext.cpp b/lld/lib/Core/LinkingContext.cpp index 0bfef16..5d5d34f 100644 --- a/lld/lib/Core/LinkingContext.cpp +++ b/lld/lib/Core/LinkingContext.cpp
@@ -76,7 +76,7 @@ return true; } -void LinkingContext::setResolverState(int32_t state) const { +void LinkingContext::setResolverState(uint32_t state) const { _currentInputElement->setResolverState(state); }