[Lldb-commits] [lldb] [lldb][AIX] Added XCOFF Object File Header for AIX (PR #111814)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 17 07:28:36 PDT 2024
================
@@ -0,0 +1,243 @@
+//===-- ObjectFileXCOFF.cpp
+//-------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "ObjectFileXCOFF.h"
+
+#include <algorithm>
+#include <cassert>
+#include <string.h>
+#include <unordered_map>
+
+#include "lldb/Core/Module.h"
----------------
labath wrote:
Are all of these needed for the thing that the file is doing? (Please don't reduce them too aggressively -- that leads to fragile headers -- but I don't think you're using e.g. LZMA or PointerUnion at the moment)
https://github.com/llvm/llvm-project/pull/111814
More information about the lldb-commits
mailing list