mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Minor change to breakpoint (lack of) support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11169 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e92e76446e
commit
f2592ce201
@ -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…
x
Reference in New Issue
Block a user