Minor change to breakpoint (lack of) support

llvm-svn: 11169
diff --git a/llvm/tools/llvm-db/Commands.cpp b/llvm/tools/llvm-db/Commands.cpp
index 577e6b9..56dbd53 100644
--- a/llvm/tools/llvm-db/Commands.cpp
+++ b/llvm/tools/llvm-db/Commands.cpp
@@ -489,7 +489,11 @@
     throw "FIXME: breaking at the current location is not implemented yet!";
   }
   
-  
+  if (!File) File = CurrentFile;
+  if (File == 0)
+    throw "Unknown file to place breakpoint!";
+
+  std::cerr << "Break: " << File->getFilename() << ":" << LineNo << "\n";
   
   throw "breakpoints not implemented yet!";
 }