[PATCH] D75382: [lld] Initial commit for new Mach-O backend
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 10 03:46:42 PDT 2020
ruiu accepted this revision.
ruiu added a comment.
LGTM
Thank you very much for doing this!
================
Comment at: lld/MachO/InputFiles.cpp:141
+
+ObjFile::ObjFile(MemoryBufferRef mb) : InputFile(ObjKind, mb) {
+ auto *buf = (const uint8_t *)mb.getBufferStart();
----------------
nit: ObjKind -> objKind
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75382/new/
https://reviews.llvm.org/D75382
More information about the llvm-commits
mailing list