Added support for reading untyped symbols.  Right now
they are treated as pointers of type (void*).  This
allows reading of environ, for instance.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@131063 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/IRForTarget.cpp b/source/Expression/IRForTarget.cpp
index 8be2a42..212af48 100644
--- a/source/Expression/IRForTarget.cpp
+++ b/source/Expression/IRForTarget.cpp
@@ -1295,7 +1295,7 @@
 bool
 IRForTarget::HandleSymbol (Module &llvm_module,
                            Value *symbol)
-{
+{    
     lldb::LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS));
     
     lldb_private::ConstString name(symbol->getName().str().c_str());