1//===- AMDGPUMacroFusion.h - AMDGPU Macro Fusion ----------------*- C++ -*-===//
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-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/CodeGen/MachineScheduler.h"
10
11namespace llvm {
12
13/// Note that you have to add:
14///   DAG.addMutation(createAMDGPUMacroFusionDAGMutation());
15/// to AMDGPUPassConfig::createMachineScheduler() to have an effect.
16std::unique_ptr<ScheduleDAGMutation> createAMDGPUMacroFusionDAGMutation();
17
18} // llvm
19