aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
diff options
context:
space:
mode:
authorValentina Giusti <valentina.giusti@intel.com>2016-09-08 14:16:45 +0000
committerValentina Giusti <valentina.giusti@intel.com>2016-09-08 14:16:45 +0000
commitcda0ae46ac9b368ee7cbb0da5aa447563dec0aae (patch)
tree6c509d4f4177d7f0e36df592219884b079561915 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
parent4d1e4d76ee4636b6605e6d119322b767efc93b70 (diff)
downloadllvm-cda0ae46ac9b368ee7cbb0da5aa447563dec0aae.zip
llvm-cda0ae46ac9b368ee7cbb0da5aa447563dec0aae.tar.gz
llvm-cda0ae46ac9b368ee7cbb0da5aa447563dec0aae.tar.bz2
Fix for rL280668, Intel(R) Memory Protection Extensions (Intel(R) MPX) support.
Summary: Signed-off-by: Valentina Giusti <valentina.giusti@intel.com> Reviewers: dvlahovski, granata.enrico, clayborg, labath Subscribers: lldb-commits Differential Revision: https://reviews.llvm.org/D24255 llvm-svn: 280942
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
index bc01836..8f0a887 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
@@ -1592,6 +1592,9 @@ GDBRemoteCommunicationServerLLGS::Handle_qRegisterInfo(
case eFormatVectorOfFloat32:
response.PutCString("format:vector-float32;");
break;
+ case eFormatVectorOfUInt64:
+ response.PutCString("format:vector-uint64;");
+ break;
case eFormatVectorOfUInt128:
response.PutCString("format:vector-uint128;");
break;