radeon/llvm: Fix isEG tablegen predicate
[mesa.git] / src / gallium / drivers / radeon / AMDILFrameLowering.h
index b1d919ef524fe8190e7e847a1ae449dda31c6917..934ee46821d220148060a314eb60f7e7db461a6e 100644 (file)
 #include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/Target/TargetFrameLowering.h"
 
-/// Information about the stack frame layout on the AMDIL targets. It holds
+/// Information about the stack frame layout on the AMDGPU targets. It holds
 /// the direction of the stack growth, the known stack alignment on entry to
 /// each function, and the offset to the locals area.
 /// See TargetFrameInfo for more comments.
 
 namespace llvm {
-  class AMDILFrameLowering : public TargetFrameLowering {
+  class AMDGPUFrameLowering : public TargetFrameLowering {
     public:
-      AMDILFrameLowering(StackDirection D, unsigned StackAl, int LAO, unsigned
+      AMDGPUFrameLowering(StackDirection D, unsigned StackAl, int LAO, unsigned
           TransAl = 1);
-      virtual ~AMDILFrameLowering();
+      virtual ~AMDGPUFrameLowering();
       virtual int getFrameIndexOffset(const MachineFunction &MF,
                                          int FI) const;
       virtual const SpillSlot *
@@ -41,6 +41,6 @@ namespace llvm {
       virtual void emitPrologue(MachineFunction &MF) const;
       virtual void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
       virtual bool hasFP(const MachineFunction &MF) const;
-  }; // class AMDILFrameLowering
+  }; // class AMDGPUFrameLowering
 } // namespace llvm
 #endif // _AMDILFRAME_LOWERING_H_