From bd2977be1ad4b1ffcedfaade226d3cc723d9ea7f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 6 Jan 2004 23:46:17 +0000 Subject: [PATCH] Ugh, fix some copy and pasted code that somehow never got compiled or something :( llvm-svn: 10706 --- llvm/tools/llvm-db/Commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/tools/llvm-db/Commands.cpp b/llvm/tools/llvm-db/Commands.cpp index cd1797cf0b75..577e6b9848b8 100644 --- a/llvm/tools/llvm-db/Commands.cpp +++ b/llvm/tools/llvm-db/Commands.cpp @@ -483,7 +483,7 @@ void CLIDebugger::breakCommand(std::string &Options) { Options = Option + Options; // reconstruct string // Parse the line specifier. - parseLineSpec(FirstLineSpec, File, LineNo); + parseLineSpec(Options, File, LineNo); } else { // Build a line specifier for the current stack frame. throw "FIXME: breaking at the current location is not implemented yet!";