summaryrefslogtreecommitdiffstats
path: root/lldb/source/Expression/ClangExpression.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Expression/ClangExpression.cpp')
-rw-r--r--lldb/source/Expression/ClangExpression.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/lldb/source/Expression/ClangExpression.cpp b/lldb/source/Expression/ClangExpression.cpp
index 702c273db9f..2383faef054 100644
--- a/lldb/source/Expression/ClangExpression.cpp
+++ b/lldb/source/Expression/ClangExpression.cpp
@@ -195,9 +195,12 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
ClangExpression::ClangExpression(const char *target_triple,
ClangExpressionDeclMap *decl_map) :
m_target_triple (),
- m_jit_mm_ptr (NULL),
+ m_decl_map (decl_map),
+ m_clang_ap (),
m_code_generator_ptr (NULL),
- m_decl_map (decl_map)
+ m_jit_mm_ptr (NULL),
+ m_execution_engine (),
+ m_jitted_functions ()
{
if (target_triple && target_triple[0])
m_target_triple = target_triple;
OpenPOWER on IntegriCloud