summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/AMDILInstrInfo.h
diff options
context:
space:
mode:
authorTom Stellard <[email protected]>2012-07-27 18:54:46 +0000
committerTom Stellard <[email protected]>2012-07-30 20:31:57 +0000
commit3a0187b1b53eca3143286a5ae7917cd71117b902 (patch)
tree9a6d1830877e6fdcc05ea8839864b3dffb3d5d95 /src/gallium/drivers/radeon/AMDILInstrInfo.h
parent9c42fb6f26bb7db1bc793f5fcc922bbae6700d74 (diff)
radeon/llvm: Merge AMDILRegisterInfo into AMDGPURegisterInfo
Diffstat (limited to 'src/gallium/drivers/radeon/AMDILInstrInfo.h')
-rw-r--r--src/gallium/drivers/radeon/AMDILInstrInfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeon/AMDILInstrInfo.h b/src/gallium/drivers/radeon/AMDILInstrInfo.h
index 94b0006b2d5..551c5465349 100644
--- a/src/gallium/drivers/radeon/AMDILInstrInfo.h
+++ b/src/gallium/drivers/radeon/AMDILInstrInfo.h
@@ -14,7 +14,7 @@
#ifndef AMDILINSTRUCTIONINFO_H_
#define AMDILINSTRUCTIONINFO_H_
-#include "AMDILRegisterInfo.h"
+#include "AMDGPURegisterInfo.h"
#include "llvm/Target/TargetInstrInfo.h"
#define GET_INSTRINFO_HEADER
@@ -27,7 +27,7 @@ namespace llvm {
//class AMDILTargetMachine;
class AMDILInstrInfo : public AMDGPUGenInstrInfo {
private:
- const AMDILRegisterInfo RI;
+ const AMDGPURegisterInfo RI;
TargetMachine &TM;
bool getNextBranchInstr(MachineBasicBlock::iterator &iter,
MachineBasicBlock &MBB) const;
@@ -38,7 +38,7 @@ public:
// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
// such, whenever a client has an instance of instruction info, it should
// always be able to get register info as well (through this method).
- const AMDILRegisterInfo &getRegisterInfo() const;
+ const AMDGPURegisterInfo &getRegisterInfo() const;
bool isCoalescableExtInstr(const MachineInstr &MI, unsigned &SrcReg,
unsigned &DstReg, unsigned &SubIdx) const;