aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectDisassemble.cpp
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2012-08-09 00:50:26 +0000
committerSean Callanan <scallanan@apple.com>2012-08-09 00:50:26 +0000
commit9a028519e8e759ecd5157fa8e7bdadae6da54651 (patch)
tree8fec32c5a99b2cff7cd3a8e150e6f6a5b2974cdb /lldb/source/Commands/CommandObjectDisassemble.cpp
parent33baca29e53d781f3b1d2fb908079afd7da865b9 (diff)
downloadllvm-9a028519e8e759ecd5157fa8e7bdadae6da54651.zip
llvm-9a028519e8e759ecd5157fa8e7bdadae6da54651.tar.gz
llvm-9a028519e8e759ecd5157fa8e7bdadae6da54651.tar.bz2
Removed explicit NULL checks for shared pointers
and instead made us use implicit casts to bool. This generated a warning in C++11. <rdar://problem/11930775> llvm-svn: 161559
Diffstat (limited to 'lldb/source/Commands/CommandObjectDisassemble.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectDisassemble.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.cpp b/lldb/source/Commands/CommandObjectDisassemble.cpp
index 029fc2e..5247743 100644
--- a/lldb/source/Commands/CommandObjectDisassemble.cpp
+++ b/lldb/source/Commands/CommandObjectDisassemble.cpp
@@ -245,7 +245,7 @@ CommandObjectDisassemble::DoExecute (Args& command, CommandReturnObject &result)
const char *plugin_name = m_options.GetPluginName ();
DisassemblerSP disassembler = Disassembler::FindPlugin(m_options.arch, plugin_name);
- if (disassembler == NULL)
+ if (!disassembler)
{
if (plugin_name)
result.AppendErrorWithFormat ("Unable to find Disassembler plug-in named '%s' that supports the '%s' architecture.\n",