diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-04-08 22:15:29 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-04-08 22:15:29 +0000 |
commit | 1f1b269bbe32641e100c97860e9cf93e529e85f4 (patch) | |
tree | 7f917dc21bfd71799f9f99a32f2de4429751e69c /lldb/source | |
parent | 4e1796e8d1cb342d34e3498207d3e7677c509cd5 (diff) | |
download | bcm5719-llvm-1f1b269bbe32641e100c97860e9cf93e529e85f4.tar.gz bcm5719-llvm-1f1b269bbe32641e100c97860e9cf93e529e85f4.zip |
Fix a test suite crasher.
llvm-svn: 129161
Diffstat (limited to 'lldb/source')
-rw-r--r-- | lldb/source/Commands/CommandObjectDisassemble.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.cpp b/lldb/source/Commands/CommandObjectDisassemble.cpp index 84630ff9955..1301fd9f4da 100644 --- a/lldb/source/Commands/CommandObjectDisassemble.cpp +++ b/lldb/source/Commands/CommandObjectDisassemble.cpp @@ -33,7 +33,7 @@ using namespace lldb; using namespace lldb_private; CommandObjectDisassemble::CommandOptions::CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter), + Options(interpreter), num_lines_context(0), num_instructions (0), func_name(), |