Re: [PATCH v1 2/4] aarch64: Add stdcall and cdecl attributes

2024-11-20 Thread Richard Sandiford
Evgeny Karpov writes: > This patch adds stdcall and cdecl attributes, which might be used for > DLL export/import in MinGW. If that's the main use case, did you consider putting the attributes in the #if TARGET_DLLIMPORT_DECL_ATTRIBUTES block? Or is that not appropriate? (Genuine question, in c

[PATCH v1 2/4] aarch64: Add stdcall and cdecl attributes

2024-11-15 Thread Evgeny Karpov
This patch adds stdcall and cdecl attributes, which might be used for DLL export/import in MinGW. gcc/ChangeLog: * config/aarch64/aarch64.cc: Update. --- gcc/config/aarch64/aarch64.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gcc/config/aarch64/aarch64.cc b/gcc/config/aarch64