lldb: remove assertion that target_arch is FreeBSD

The target is not necessarily a FreeBSD binary - for example, it may be
a Linux binary running under the linuxulator.  Basic ptrace (live)
debugging already worked in this case, except for the assertion.

Sponsored by:	Turing Robotic Industries Inc.
This commit is contained in:
Ed Maste 2018-04-24 19:26:58 +00:00
parent fc7d33b49e
commit 7165bb8cc6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=332965

View File

@ -169,7 +169,6 @@ lldb::RegisterContextSP FreeBSDThread::GetRegisterContext() {
RegisterInfoInterface *reg_interface = NULL;
const ArchSpec &target_arch = GetProcess()->GetTarget().GetArchitecture();
assert(target_arch.GetTriple().getOS() == llvm::Triple::FreeBSD);
switch (target_arch.GetMachine()) {
case llvm::Triple::aarch64:
reg_interface = new RegisterInfoPOSIX_arm64(target_arch);