#ifndef LLD_COFF_CALL_GRAPH_SORT_H
#define LLD_COFF_CALL_GRAPH_SORT_H
#include "llvm/ADT/DenseMap.h"
namespace lld::coff {
class SectionChunk;
class COFFLinkerContext;
llvm::DenseMap<const SectionChunk *, int>
computeCallGraphProfileOrder(const COFFLinkerContext &ctx);
}
#endif