From a97aa92ab2e11812ce1b7fa460d09b527b8b0563 Mon Sep 17 00:00:00 2001 From: Sean Callanan Date: Tue, 14 Feb 2012 00:22:51 +0000 Subject: [PATCH] Fixed a bug that caused the description strings for assembly instructions to occasionally come out empty. llvm-svn: 150445 --- lldb/source/Core/Disassembler.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lldb/source/Core/Disassembler.cpp b/lldb/source/Core/Disassembler.cpp index cd694d603c13..ce4f708fef37 100644 --- a/lldb/source/Core/Disassembler.cpp +++ b/lldb/source/Core/Disassembler.cpp @@ -510,7 +510,8 @@ Disassembler::Disassemble Instruction::Instruction(const Address &address, AddressClass addr_class) : m_address (address), m_address_class (addr_class), - m_opcode() + m_opcode(), + m_calculated_strings(false) { }