summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/AMDGPUMCInstLower.h
blob: 2ea5b0205ebdbfc75d1f114ff1af772945a23d30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#ifndef AMDGPU_MCINSTLOWER_H
#define AMDGPU_MCINSTLOWER_H

namespace llvm {

class MCInst;
class MachineInstr;

class AMDGPUMCInstLower {

public:
  AMDGPUMCInstLower();

  /// Lower - Lower a MachineInstr to an MCInst
  void Lower(const MachineInstr *MI, MCInst &OutMI) const;

};

} // End namespace llvm

#endif //AMDGPU_MCINSTLOWER_H