Refactored ClangExpressionDeclMap to use
ClangExpressionVariables for found external variables
as well as for struct members, replacing the Tuple
and StructMember data structures.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@111859 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/DWARFExpression.cpp b/source/Expression/DWARFExpression.cpp
index ae6a903..2ed5127 100644
--- a/source/Expression/DWARFExpression.cpp
+++ b/source/Expression/DWARFExpression.cpp
@@ -2466,6 +2466,7 @@
         //----------------------------------------------------------------------
         case DW_OP_APPLE_extern:
             {
+                /*
                 uint32_t idx = opcodes.GetULEB128(&offset);
                 if (!decl_map)
                 {
@@ -2483,6 +2484,7 @@
                 Value *proxy = extern_var->CreateProxy();
                 stack.push_back(*proxy);
                 delete proxy;
+                */
             }
             break;