From 99eb040c02a780db86ac07e35be2d8a6239f7007 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Fri, 5 Apr 2013 23:31:40 +0000 Subject: [PATCH] R600: Add RV670 processor MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is an R600 GPU with double support. Reviewed-by: Christian König git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178929 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/R600/Processors.td | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/R600/Processors.td b/lib/Target/R600/Processors.td index 3034c798826..b9229d499d1 100644 --- a/lib/Target/R600/Processors.td +++ b/lib/Target/R600/Processors.td @@ -15,6 +15,7 @@ class Proc Featur : Processor; 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]>; -- 2.34.1