Remembered to NULL out the symbol, which was

causing testsuite crashes.

llvm-svn: 150125
This commit is contained in:
Sean Callanan 2012-02-09 00:54:55 +00:00
parent 4dcad1437c
commit acda6789df
1 changed files with 2 additions and 1 deletions

View File

@ -98,7 +98,8 @@ public:
m_named_decl (NULL),
m_llvm_value (NULL),
m_lldb_value (NULL),
m_lldb_var ()
m_lldb_var (),
m_lldb_sym (NULL)
{
}