summaryrefslogtreecommitdiff
path: root/tools/llvm-db
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-01-06 23:46:17 +0000
committerChris Lattner <sabre@nondot.org>2004-01-06 23:46:17 +0000
commitf6608ddf449d8c3d37d70732b85cc41fd8ff36da (patch)
treedc6c000d72c87e93b3412090d8502ea44fb90e29 /tools/llvm-db
parentd2c39e991e71821a5deeee6f8505448dd7af75dd (diff)
downloadllvm-f6608ddf449d8c3d37d70732b85cc41fd8ff36da.tar.gz
llvm-f6608ddf449d8c3d37d70732b85cc41fd8ff36da.tar.bz2
llvm-f6608ddf449d8c3d37d70732b85cc41fd8ff36da.tar.xz
Ugh, fix some copy and pasted code that somehow never got compiled or something
:( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10706 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-db')
-rw-r--r--tools/llvm-db/Commands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-db/Commands.cpp b/tools/llvm-db/Commands.cpp
index cd1797cf0b..577e6b9848 100644
--- a/tools/llvm-db/Commands.cpp
+++ b/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!";