1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Minor change to breakpoint (lack of) support

llvm-svn: 11169
This commit is contained in:
Chris Lattner 2004-02-08 00:06:20 +00:00
parent 6af67c7eb4
commit 58a3a94fe7

View File

@ -489,7 +489,11 @@ void CLIDebugger::breakCommand(std::string &Options) {
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!";
}