diff options
author | Kirill Bobyrev <omtcyfz@gmail.com> | 2018-01-29 12:59:07 +0000 |
---|---|---|
committer | Kirill Bobyrev <omtcyfz@gmail.com> | 2018-01-29 12:59:07 +0000 |
commit | de6fad6935546c44293341a272a974423ee60582 (patch) | |
tree | 85e7395815042e409103a8774705cf6fc274aeef /llvm/lib/Object/ModuleSymbolTable.cpp | |
parent | a9e31537af5d70ad2d71b80a71ea42c89a7f2ba7 (diff) | |
download | llvm-de6fad6935546c44293341a272a974423ee60582.zip llvm-de6fad6935546c44293341a272a974423ee60582.tar.gz llvm-de6fad6935546c44293341a272a974423ee60582.tar.bz2 |
[lldb] Silence signed <-> unsigned integer comparison warning
`num_args` is unsigned integer, declared as below:
```
uint32_t num_args = arg_enum->getChildCount();
```
Comparison with the signed `arg_idx` produces a warning when compiled with
-Wsign-compare flag, this patch addresses this simple issue without affecting
any functionality.
Reviewers: davide, asmith
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D42620
llvm-svn: 323645
Diffstat (limited to 'llvm/lib/Object/ModuleSymbolTable.cpp')
0 files changed, 0 insertions, 0 deletions