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:
parent
6af67c7eb4
commit
58a3a94fe7
@ -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!";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user