Hi! On 2024-01-07T20:20:19+0100, Tobias Burnus wrote: > --- a/gcc/config/gcn/gcn.h > +++ b/gcc/config/gcn/gcn.h > @@ -30,6 +30,8 @@ > builtin_define ("__CDNA2__"); \ > else if (TARGET_RDNA2) \ > builtin_define ("__RDNA2__"); \ > + else if (TARGET_RDNA3) \ > + builtin_define ("__RDNA3__"); \ > if (TARGET_FIJI) \ > { \ > builtin_define ("__fiji__"); \ > @@ -41,11 +43,13 @@ > builtin_define ("__gfx906__"); \ > else if (TARGET_GFX908) \ > builtin_define ("__gfx908__"); \ > - else if (TARGET_GFX90a) \ > - builtin_define ("__gfx90a__"); \ > + else if (TARGET_GFX1030) \ > + builtin_define ("__gfx1030"); \ > + else if (TARGET_GFX1100) \ > + builtin_define ("__gfx1100__"); \ > } while (0) Supposedly it wasn't intentional that we lost gfx90a here -- I've pushed to master branch commit 159174f25716c18a74a915cb01b9a28024ea7a3d "GCN: Restore lost '__gfx90a__' target CPU definition", see attached. Grüße Thomas