18 lines · c
1//===- LinkerOptimizationHints.h ------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLD_MACHO_LINKER_OPTIMIZATION_HINTS_H10#define LLD_MACHO_LINKER_OPTIMIZATION_HINTS_H11 12#include "InputFiles.h"13 14namespace lld::macho {15void applyOptimizationHints(uint8_t *outBuf, const ObjFile &obj);16}17#endif18