Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lldb/lit/Settings/command-breakpoint-col.test
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# UNSUPPORTED: system-windows
#
# RUN: %clang_host -g -O0 %S/Inputs/main.c -o %t.out
# RUN: %clang -g -O0 %S/Inputs/main.c -o %t.out
# 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
# RUN: %lldb -b -o 'help _regexp-break' -o 'b main.c:2:21' %t.out | FileCheck %s --check-prefix HELP-REGEX --check-prefix CHECK
# HELP: -u <column> ( --column <column> )
Expand Down
2 changes: 1 addition & 1 deletion lldb/source/Host/common/FileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,6 @@ ErrorOr<std::string> FileSystem::GetExternalPath(const FileSpec &file_spec) {

void FileSystem::AddFile(const llvm::Twine &file) {
if (m_collector && !llvm::sys::fs::is_directory(file)) {
m_collector->addFile(file);
m_collector->AddFile(file);
}
}