mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +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>
This commit is contained in:
parent
bfc14796b0
commit
dd27825c8c
1 changed files with 2 additions and 1 deletions
|
|
@ -555,10 +555,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