mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
radeonsi: Use 'SI' as the LLVM processor for CIK on LLVM <= 3.3
LLVM 3.3 does not know about CIK processors, and the codes paths for SI and CIK are the same. Reviewed-by: Marek Olšák <marek.olsak@amd.com> Cc: "9.2" <mesa-stable@lists.freedesktop.org>
This commit is contained in:
parent
13ac38b4ef
commit
9da4021626
1 changed files with 4 additions and 0 deletions
|
|
@ -307,11 +307,15 @@ const char *r600_get_llvm_processor_name(enum radeon_family family)
|
|||
case CHIP_PITCAIRN: return "pitcairn";
|
||||
case CHIP_VERDE: return "verde";
|
||||
case CHIP_OLAND: return "oland";
|
||||
#if HAVE_LLVM <= 0x0303
|
||||
default: return "SI";
|
||||
#else
|
||||
case CHIP_HAINAN: return "hainan";
|
||||
case CHIP_BONAIRE: return "bonaire";
|
||||
case CHIP_KABINI: return "kabini";
|
||||
case CHIP_KAVERI: return "kaveri";
|
||||
default: return "";
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue