summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-04-05 23:31:40 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-04-05 23:31:40 +0000
commit99eb040c02a780db86ac07e35be2d8a6239f7007 (patch)
treea63c5f3e0ac37f9034ae77174b14ca15f4f46748 /lib
parent2a4d3e7e873d4c62a4b751ac9f96a3d787c8ee9c (diff)
downloadllvm-99eb040c02a780db86ac07e35be2d8a6239f7007.tar.gz
llvm-99eb040c02a780db86ac07e35be2d8a6239f7007.tar.bz2
llvm-99eb040c02a780db86ac07e35be2d8a6239f7007.tar.xz
R600: Add RV670 processor
This is an R600 GPU with double support. Reviewed-by: Christian König <christian.koenig@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178929 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/R600/Processors.td1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/R600/Processors.td b/lib/Target/R600/Processors.td
index 3034c79882..b9229d499d 100644
--- a/lib/Target/R600/Processors.td
+++ b/lib/Target/R600/Processors.td
@@ -15,6 +15,7 @@ class Proc<string Name, ProcessorItineraries itin, list<SubtargetFeature> Featur
: Processor<Name, itin, Features>;
def : Proc<"", R600_EG_Itin, [FeatureR600ALUInst]>;
def : Proc<"r600", R600_EG_Itin, [FeatureR600ALUInst]>;
+def : Proc<"rv670", R600_EG_Itin, [FeatureR600ALUInst, FeatureFP64]>;
def : Proc<"rv710", R600_EG_Itin, []>;
def : Proc<"rv730", R600_EG_Itin, []>;
def : Proc<"rv770", R600_EG_Itin, [FeatureFP64]>;