From 59aa1fe1cf1bd13194a96b8b33f0e1aa0a8e7e8a Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Fri, 1 Feb 2013 16:03:56 +0000 Subject: [PATCH] r600g/llvm: Select the correct GPU type for RV670 RV670 belongs in the R600 chip class https://bugs.freedesktop.org/show_bug.cgi?id=58666 NOTE: This is a candidate for the 9.1 branch --- src/gallium/drivers/r600/r600_llvm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/r600_llvm.c b/src/gallium/drivers/r600/r600_llvm.c index 17d362c..6100a32 100644 --- a/src/gallium/drivers/r600/r600_llvm.c +++ b/src/gallium/drivers/r600/r600_llvm.c @@ -449,6 +449,7 @@ const char * r600_llvm_gpu_string(enum radeon_family family) case CHIP_RV630: case CHIP_RV620: case CHIP_RV635: + case CHIP_RV670: case CHIP_RS780: case CHIP_RS880: gpu_family = "r600"; @@ -459,7 +460,6 @@ const char * r600_llvm_gpu_string(enum radeon_family family) case CHIP_RV730: gpu_family = "rv730"; break; - case CHIP_RV670: case CHIP_RV740: case CHIP_RV770: gpu_family = "rv770"; -- 1.7.11.4