[PATCH] D57907: lldb: Fix compilation on OpenBSD

Raphael Isemann via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 10 07:23:44 PST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL353642: lldb: Fix compilation on OpenBSD (authored by teemperor, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D57907?vs=185804&id=186150#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57907/new/

https://reviews.llvm.org/D57907

Files:
  lldb/trunk/source/Host/openbsd/Host.cpp


Index: lldb/trunk/source/Host/openbsd/Host.cpp
===================================================================
--- lldb/trunk/source/Host/openbsd/Host.cpp
+++ lldb/trunk/source/Host/openbsd/Host.cpp
@@ -67,8 +67,7 @@
 
       cstr = data.GetCStr(&offset);
       if (cstr) {
-        process_info.GetExecutableFile().SetFile(cstr, false,
-                                                 FileSpec::Style::native);
+        process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native);
 
         if (!(match_info_ptr == NULL ||
               NameMatches(


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57907.186150.patch
Type: text/x-patch
Size: 571 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190210/7e9f234d/attachment.bin>


More information about the llvm-commits mailing list