[Lldb-commits] [PATCH] D149987: ObjectFile: introduce a COFF object file plugin
Thorsten via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri May 5 22:37:51 PDT 2023
tschuett added inline comments.
================
Comment at: lldb/source/Plugins/ObjectFile/COFF/ObjectFileCOFF.cpp:26
+namespace {
+bool IsCOFFObjectFile(const DataBufferSP &data) {
+ return identify_magic(toStringRef(data->GetData())) ==
----------------
Could you turn this into a static instead?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D149987/new/
https://reviews.llvm.org/D149987
More information about the lldb-commits
mailing list