[Lldb-commits] [lldb] r217252 - Set the process vendor in GDBRemoteCommunicationClient::GetCurrentProcessInfo.

Todd Fiala todd.fiala at gmail.com
Fri Sep 5 07:56:13 PDT 2014


Author: tfiala
Date: Fri Sep  5 09:56:13 2014
New Revision: 217252

URL: http://llvm.org/viewvc/llvm-project?rev=217252&view=rev
Log:
Set the process vendor in GDBRemoteCommunicationClient::GetCurrentProcessInfo.

Change by Stephane Sezer.

Modified:
    lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp

Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp?rev=217252&r1=217251&r2=217252&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp Fri Sep  5 09:56:13 2014
@@ -2501,6 +2501,7 @@ GDBRemoteCommunicationClient::GetCurrent
                 {
                     assert (pointer_byte_size == m_process_arch.GetAddressByteSize());
                 }
+                m_process_arch.GetTriple().setVendorName (llvm::StringRef (vendor_name));
                 m_process_arch.GetTriple().setOSName(llvm::StringRef (os_name));
                 m_host_arch.GetTriple().setVendorName (llvm::StringRef (vendor_name));
                 m_host_arch.GetTriple().setOSName (llvm::StringRef (os_name));





More information about the lldb-commits mailing list