diff options
author | Tom Stellard <[email protected]> | 2012-07-30 15:57:50 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-07-30 21:10:14 +0000 |
commit | 2f921101c0826dc52a2c69f85c3da0f7f6e8212a (patch) | |
tree | b0e58be6d20eee06df83a94571e149d73a401c15 /src/gallium/drivers/radeon/AMDILSIDevice.h | |
parent | b72ab79d73b29ec087d90cf2c698adbab4db5def (diff) |
radeon/llvm: Rename all AMDIL* classes to AMDGPU*
Diffstat (limited to 'src/gallium/drivers/radeon/AMDILSIDevice.h')
-rw-r--r-- | src/gallium/drivers/radeon/AMDILSIDevice.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/drivers/radeon/AMDILSIDevice.h b/src/gallium/drivers/radeon/AMDILSIDevice.h index 91ed97f183f..6a684cb6095 100644 --- a/src/gallium/drivers/radeon/AMDILSIDevice.h +++ b/src/gallium/drivers/radeon/AMDILSIDevice.h @@ -25,21 +25,21 @@ namespace llvm { // SI generation of devices and their respective sub classes //===---------------------------------------------------------------------===// -// The AMDILSIDevice is the base class for all Northern Island series of -// cards. It is very similiar to the AMDILEvergreenDevice, with the major +// The AMDGPUSIDevice is the base class for all Northern Island series of +// cards. It is very similiar to the AMDGPUEvergreenDevice, with the major // exception being differences in wavefront size and hardware capabilities. The // SI devices are all 64 wide wavefronts and also add support for signed 24 bit // integer operations - class AMDILSIDevice : public AMDILEvergreenDevice { + class AMDGPUSIDevice : public AMDGPUEvergreenDevice { public: - AMDILSIDevice(AMDGPUSubtarget*); - virtual ~AMDILSIDevice(); + AMDGPUSIDevice(AMDGPUSubtarget*); + virtual ~AMDGPUSIDevice(); virtual size_t getMaxLDSSize() const; virtual uint32_t getGeneration() const; virtual std::string getDataLayout() const; protected: - }; // AMDILSIDevice + }; // AMDGPUSIDevice } // namespace llvm #endif // _AMDILSIDEVICE_H_ |