diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2012-03-15 15:44:01 -0400 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2012-03-15 15:45:53 -0400 |
commit | 904b1774ec68808a4396cbb488bdfee88ad88a8d (patch) | |
tree | 848bf885da11bc932f9e176457a92f2c1a503880 /src | |
parent | a7d964f302384a0492526e128e3e596be6779bb2 (diff) |
r600g: Fix radeon_family to llvm processor mappings
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r600/r600_llvm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/r600/r600_llvm.c b/src/gallium/drivers/r600/r600_llvm.c index c8b13daf359..3a0107a883d 100644 --- a/src/gallium/drivers/r600/r600_llvm.c +++ b/src/gallium/drivers/r600/r600_llvm.c @@ -256,27 +256,27 @@ const char * r600_llvm_gpu_string(enum radeon_family family) case CHIP_R600: case CHIP_RV610: case CHIP_RV630: - case CHIP_RV670: case CHIP_RV620: case CHIP_RV635: case CHIP_RS780: case CHIP_RS880: case CHIP_RV710: - case CHIP_RV740: gpu_family = "rv710"; break; case CHIP_RV730: gpu_family = "rv730"; break; + case CHIP_RV670: + case CHIP_RV740: case CHIP_RV770: gpu_family = "rv770"; break; case CHIP_PALM: - case CHIP_SUMO: - case CHIP_SUMO2: case CHIP_CEDAR: gpu_family = "cedar"; break; + case CHIP_SUMO: + case CHIP_SUMO2: case CHIP_REDWOOD: gpu_family = "redwood"; break; |