[Lldb-commits] [lldb] r228715 - Adding x86 to supported architectures on x86_64.
Chaoren Lin
chaorenl at google.com
Tue Feb 10 10:30:32 PST 2015
Author: chaoren
Date: Tue Feb 10 12:30:31 2015
New Revision: 228715
URL: http://llvm.org/viewvc/llvm-project?rev=228715&view=rev
Log:
Adding x86 to supported architectures on x86_64.
Modified:
lldb/trunk/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
Modified: lldb/trunk/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp?rev=228715&r1=228714&r2=228715&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp Tue Feb 10 12:30:31 2015
@@ -112,6 +112,7 @@ RegisterContextLinux_i386::GetRegisterIn
switch (m_target_arch.GetMachine())
{
case llvm::Triple::x86:
+ case llvm::Triple::x86_64:
return g_register_infos_i386;
default:
assert(false && "Unhandled target architecture.");
More information about the lldb-commits
mailing list