diff options
author | Chaoren Lin <chaorenl@google.com> | 2015-02-10 18:30:31 +0000 |
---|---|---|
committer | Chaoren Lin <chaorenl@google.com> | 2015-02-10 18:30:31 +0000 |
commit | 03d30fc7bc55b8c93e2966c685e64b660470498f (patch) | |
tree | 8be07856fe893e9468e4bb452b899f296847de27 /lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp | |
parent | df70d8460e232098b40a5b20d80ccf8f0d4a2e6e (diff) | |
download | bcm5719-llvm-03d30fc7bc55b8c93e2966c685e64b660470498f.tar.gz bcm5719-llvm-03d30fc7bc55b8c93e2966c685e64b660470498f.zip |
Adding x86 to supported architectures on x86_64.
llvm-svn: 228715
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp b/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp index b38d6cc60ca..a503ef82eaf 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp +++ b/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp @@ -112,6 +112,7 @@ RegisterContextLinux_i386::GetRegisterInfo() const 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."); |