Re: [PATCH] Fix ptwrite64 handling with -m32 (PR target/88195)

2018-11-26 Thread Uros Bizjak
On Mon, Nov 26, 2018 at 9:52 PM Jakub Jelinek wrote: > > Hi! > > The following patch makes def_builtin2 behave consistently wrt. > OPTION_MASK_ISA_64BIT requirement to def_builtin. > The latter has: > tree decl = NULL_TREE; > > if (!(mask & OPTION_MASK_ISA_64BIT) || TARGET_64BIT) > { > ...

[PATCH] Fix ptwrite64 handling with -m32 (PR target/88195)

2018-11-26 Thread Jakub Jelinek
Hi! The following patch makes def_builtin2 behave consistently wrt. OPTION_MASK_ISA_64BIT requirement to def_builtin. The latter has: tree decl = NULL_TREE; if (!(mask & OPTION_MASK_ISA_64BIT) || TARGET_64BIT) { ... } return decl; and so if some builtin requires TARGET_64BIT, it is