Fix 32-bit builds
authorPavel Labath <labath@google.com>
Fri, 26 May 2017 13:53:39 +0000 (13:53 +0000)
committerPavel Labath <labath@google.com>
Fri, 26 May 2017 13:53:39 +0000 (13:53 +0000)
commit4c950235b2ad8e55f3ef83f15e875da0234cbea2
tree6c04118bd0ad636e97047c14def5321e5f9de555
parent57b2492b38c40dd541aac7329f4ab60390020f08
Fix 32-bit builds

r303972 used GetValueForKeyAsInteger with mismatched types (e.g.
instantiating with uint64_t, but passing a size_t argument), which
manifested itself on 32-bit architectures.

The intended usage of these functions was to not specify the type
explicitly, and let the compiler figure that out, so switch to that kind
of usage instead.

llvm-svn: 303988
lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp