================ @@ -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 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits