Make sure that we print out function or symbol information. If we disassembled
a symbol, were weren't showing the "<module>`<symbol>" header.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@145511 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Core/Disassembler.cpp b/source/Core/Disassembler.cpp
index 9bc66f3..1628f3a 100644
--- a/source/Core/Disassembler.cpp
+++ b/source/Core/Disassembler.cpp
@@ -384,7 +384,7 @@
                             }
                         }
                     }
-                    else if (!(prev_sc.function == sc.function || prev_sc.symbol == sc.symbol))
+                    else if ((sc.function || sc.symbol) && (sc.function != prev_sc.function || sc.symbol != prev_sc.symbol))
                     {
                         if (prev_sc.function || prev_sc.symbol)
                             strm.EOL();