mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 15:58:05 +02:00
radeonsi: fix Fiji for LLVM <= 3.7
Cc: 11.0 11.1 <mesa-stable@lists.freedesktop.org>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit dd27825c8c)
This commit is contained in:
parent
b0b163c82a
commit
aff9f8a6f7
1 changed files with 2 additions and 1 deletions
|
|
@ -556,10 +556,11 @@ const char *r600_get_llvm_processor_name(enum radeon_family family)
|
|||
case CHIP_TONGA: return "tonga";
|
||||
case CHIP_ICELAND: return "iceland";
|
||||
case CHIP_CARRIZO: return "carrizo";
|
||||
case CHIP_FIJI: return "fiji";
|
||||
#if HAVE_LLVM <= 0x0307
|
||||
case CHIP_FIJI: return "tonga";
|
||||
case CHIP_STONEY: return "carrizo";
|
||||
#else
|
||||
case CHIP_FIJI: return "fiji";
|
||||
case CHIP_STONEY: return "stoney";
|
||||
#endif
|
||||
default: return "";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue