mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
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
This commit is contained in:
parent
6c7e95cb89
commit
257006e2a4
1 changed files with 1 additions and 1 deletions
|
|
@ -537,6 +537,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";
|
||||
|
|
@ -547,7 +548,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";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue