From: Tom Stellard Date: Fri, 5 Apr 2013 23:31:40 +0000 (+0000) Subject: R600: Add RV670 processor X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=99eb040c02a780db86ac07e35be2d8a6239f7007;p=oota-llvm.git R600: Add RV670 processor 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 --- 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]>;