diff options
author | Tom Stellard <[email protected]> | 2012-07-30 15:51:21 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-07-30 21:10:13 +0000 |
commit | b72ab79d73b29ec087d90cf2c698adbab4db5def (patch) | |
tree | b8565d788eac69c75fd8cc0bc4f5851e98abbc14 /src/gallium/drivers/radeon/AMDILNIDevice.cpp | |
parent | 27ae41c83dafcec09e870b3cf08b060064dbb122 (diff) |
radeon/llvm: Merge AMDILSubtarget into AMDGPUSubtarget
Diffstat (limited to 'src/gallium/drivers/radeon/AMDILNIDevice.cpp')
-rw-r--r-- | src/gallium/drivers/radeon/AMDILNIDevice.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeon/AMDILNIDevice.cpp b/src/gallium/drivers/radeon/AMDILNIDevice.cpp index d4112cda0b5..ad407fbe595 100644 --- a/src/gallium/drivers/radeon/AMDILNIDevice.cpp +++ b/src/gallium/drivers/radeon/AMDILNIDevice.cpp @@ -8,11 +8,11 @@ //==-----------------------------------------------------------------------===// #include "AMDILNIDevice.h" #include "AMDILEvergreenDevice.h" -#include "AMDILSubtarget.h" +#include "AMDGPUSubtarget.h" using namespace llvm; -AMDILNIDevice::AMDILNIDevice(AMDILSubtarget *ST) +AMDILNIDevice::AMDILNIDevice(AMDGPUSubtarget *ST) : AMDILEvergreenDevice(ST) { std::string name = ST->getDeviceName(); @@ -47,7 +47,7 @@ AMDILNIDevice::getGeneration() const } -AMDILCaymanDevice::AMDILCaymanDevice(AMDILSubtarget *ST) +AMDILCaymanDevice::AMDILCaymanDevice(AMDGPUSubtarget *ST) : AMDILNIDevice(ST) { setCaps(); |