diff options
author | Enrico Granata <egranata@apple.com> | 2016-02-06 01:36:07 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-02-06 01:36:07 +0000 |
commit | 41571781c01723a64a0d2fa3e82b1b7f3f2c28dc (patch) | |
tree | 77748f328d2f3aa97ff5dac3d46cab10769f59b2 /lldb/source/Target/LanguageRuntime.cpp | |
parent | 23919372d1db1dba80e8c4697e0a0922e830fc3a (diff) | |
download | bcm5719-llvm-41571781c01723a64a0d2fa3e82b1b7f3f2c28dc.tar.gz bcm5719-llvm-41571781c01723a64a0d2fa3e82b1b7f3f2c28dc.zip |
Per Jim's suggestion, move checks that we're not mixing and matching Debuggers and Commands deeper in the bowels of LLDB
NFC
llvm-svn: 259972
Diffstat (limited to 'lldb/source/Target/LanguageRuntime.cpp')
-rw-r--r-- | lldb/source/Target/LanguageRuntime.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Target/LanguageRuntime.cpp b/lldb/source/Target/LanguageRuntime.cpp index 7f386162d16..d247994621f 100644 --- a/lldb/source/Target/LanguageRuntime.cpp +++ b/lldb/source/Target/LanguageRuntime.cpp @@ -339,7 +339,6 @@ LanguageRuntime::InitializeCommands (CommandObject* parent) // the CommandObject vended by a Language plugin cannot be created once and cached because // we may create multiple debuggers and need one instance of the command each - the implementing function // is meant to create a new instance of the command each time it is invoked - assert(&command->GetCommandInterpreter() == &parent->GetCommandInterpreter() && "language plugin returned command for a mismatched CommandInterpreter"); parent->LoadSubCommand(command->GetCommandName(), command); } } |