Skip to content

Commit c7e3ba3

Browse files
authored
Merge pull request #677 from JDevlieghere/fix-command-breakpoint-col.test
Fix command breakpoint col.test
2 parents 8762dfa + 24f1cf0 commit c7e3ba3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/lit/Settings/command-breakpoint-col.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# UNSUPPORTED: system-windows
22
#
3-
# RUN: %clang_host -g -O0 %S/Inputs/main.c -o %t.out
3+
# RUN: %clang -g -O0 %S/Inputs/main.c -o %t.out
44
# RUN: %lldb -b -o 'help breakpoint set' -o 'breakpoint set -f main.c -l 2 -u 21' %t.out | FileCheck %s --check-prefix HELP --check-prefix CHECK
55
# RUN: %lldb -b -o 'help _regexp-break' -o 'b main.c:2:21' %t.out | FileCheck %s --check-prefix HELP-REGEX --check-prefix CHECK
66
# HELP: -u <column> ( --column <column> )

lldb/source/Host/common/FileSystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,6 @@ ErrorOr<std::string> FileSystem::GetExternalPath(const FileSpec &file_spec) {
470470

471471
void FileSystem::AddFile(const llvm::Twine &file) {
472472
if (m_collector && !llvm::sys::fs::is_directory(file)) {
473-
m_collector->addFile(file);
473+
m_collector->AddFile(file);
474474
}
475475
}

0 commit comments

Comments
 (0)