From fd80b5c2603e1c6af4767672e614329c2a06faf1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 19 Nov 2004 19:45:44 +0000 Subject: Fix a bug that caused stuff like this: main at ./eh.cpp:1414 -> printf("a\n"); to be printed, instead of this: main at ./eh.cpp:14 14 -> printf("a\n"); git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18005 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-db/Commands.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/llvm-db/Commands.cpp') diff --git a/tools/llvm-db/Commands.cpp b/tools/llvm-db/Commands.cpp index 8e3125eaff..de7fdf604b 100644 --- a/tools/llvm-db/Commands.cpp +++ b/tools/llvm-db/Commands.cpp @@ -119,7 +119,8 @@ void CLIDebugger::printProgramLocation(bool PrintLocation) { CurrentFile = &FileDesc->getSourceText(); std::cout << " at " << CurrentFile->getFilename() << ":" << LineNo; - if (ColNo) std::cout << ":" << ColNo << "\n"; + if (ColNo) std::cout << ":" << ColNo; + std::cout << "\n"; } if (printSourceLine(LineNo)) -- cgit v1.2.3-18-g5258