[Lldb-commits] [clang] [clang-tools-extra] [lldb] [llvm] [MC][AsmParser]: Don't use SourceMgr::AddIncludeFile when opening .incbin files (PR #194254)

Alexis Engelke via lldb-commits lldb-commits at lists.llvm.org
Sat May 2 06:18:55 PDT 2026


================
@@ -59,6 +59,12 @@ class VolatileFileSystem : public llvm::vfs::ProxyFileSystem {
                                 /*IsVolatile=*/true);
     }
 
+    llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
+    getSliceBuffer(const llvm::Twine &Name, int64_t Offset, int64_t Count,
+                   bool IsVolatile) override {
+      llvm_unreachable("unimplemented");
----------------
aengelke wrote:

Don't use llvm_unreachable for code that could be reached.

https://github.com/llvm/llvm-project/pull/194254


More information about the lldb-commits mailing list