Hi Eric, On Sun, Sep 04, 2016 at 10:14:22PM +0200, Eric Botcazou wrote: > * config/aarch64/aarch64.h(TARGET_CUSTOM_FUNCTION_DESCRIPTORS):Define
Space after ":". Many spaces are missing in the changelogs for this series. > Index: config/rs6000/rs6000.h > =================================================================== > --- config/rs6000/rs6000.h (revision 239944) > +++ config/rs6000/rs6000.h (working copy) > @@ -2914,3 +2914,6 @@ extern GTY(()) tree rs6000_builtin_types[RS6000_BT > extern GTY(()) tree rs6000_builtin_decls[RS6000_BUILTIN_COUNT]; > > #define TARGET_SUPPORTS_WIDE_INT 1 > + > +/* Use custom descriptors instead of trampolines when possible if not AIX. > */ > +#define TARGET_CUSTOM_FUNCTION_DESCRIPTORS (DEFAULT_ABI == ABI_AIX ? 0 : 1) Make this "If not AIX or ELFv1" please? The ABI_AIX name is a bit confusing sometimes. Segher