diff options
author | Rui Ueyama <ruiu@google.com> | 2013-10-08 03:59:45 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2013-10-08 03:59:45 +0000 |
commit | 8b8e5216af9b45caf068f3a75e8638b6218355ef (patch) | |
tree | 9f00c003f08c976c8ec820f1e0b202a36cacf22e /lld/lib/Core/LinkingContext.cpp | |
parent | 7a633b4de5b54a7206ed96151403f3562df958a1 (diff) | |
download | bcm5719-llvm-8b8e5216af9b45caf068f3a75e8638b6218355ef.tar.gz bcm5719-llvm-8b8e5216af9b45caf068f3a75e8638b6218355ef.zip |
Make bitmask an unsigned type.
llvm-svn: 192163
Diffstat (limited to 'lld/lib/Core/LinkingContext.cpp')
-rw-r--r-- | lld/lib/Core/LinkingContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/lib/Core/LinkingContext.cpp b/lld/lib/Core/LinkingContext.cpp index 0bfef16cc61..5d5d34fb149 100644 --- a/lld/lib/Core/LinkingContext.cpp +++ b/lld/lib/Core/LinkingContext.cpp @@ -76,7 +76,7 @@ bool LinkingContext::createInternalFiles( return true; } -void LinkingContext::setResolverState(int32_t state) const { +void LinkingContext::setResolverState(uint32_t state) const { _currentInputElement->setResolverState(state); } |