mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Merging r181792:
------------------------------------------------------------------------ r181792 | tstellar | 2013-05-14 07:42:56 -0700 (Tue, 14 May 2013) | 8 lines R600/SI: Add processor type for Hainan asic Patch by: Alex Deucher Reviewed-by: Tom Stellard <thomas.stellard@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> NOTE: This is a candidate for the 3.3 branch. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_33@181949 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a3d7a30740
commit
89b909942f
@ -81,7 +81,8 @@ AMDGPUDevice* getDeviceFromName(const std::string &deviceName,
|
||||
return new AMDGPUNIDevice(ptr);
|
||||
} else if (deviceName == "SI" ||
|
||||
deviceName == "tahiti" || deviceName == "pitcairn" ||
|
||||
deviceName == "verde" || deviceName == "oland") {
|
||||
deviceName == "verde" || deviceName == "oland" ||
|
||||
deviceName == "hainan") {
|
||||
return new AMDGPUSIDevice(ptr);
|
||||
} else {
|
||||
#if DEBUG
|
||||
|
@ -45,3 +45,4 @@ def : Proc<"tahiti", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
||||
def : Proc<"pitcairn", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
||||
def : Proc<"verde", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
||||
def : Proc<"oland", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
||||
def : Proc<"hainan", SI_Itin, [Feature64BitPtr, FeatureFP64]>;
|
||||
|
Loading…
Reference in New Issue
Block a user