Re: [PATCH] middle-end, v2: Add new value for vector types for __builtin_classify_type

2023-11-21 Thread Jakub Jelinek
On Mon, Nov 20, 2023 at 08:03:18AM +, Richard Biener wrote: > OK. Do we have to adjust any of our documentation for this? I've done it this way. We don't really document the exact values in the documentation, so I think it is sufficient like that. Committed to trunk. 2023-11-20 Jakub

Re: [PATCH] middle-end, v2: Add new value for vector types for __builtin_classify_type

2023-11-20 Thread Richard Biener
On Fri, 17 Nov 2023, Jakub Jelinek wrote: > On Thu, Nov 16, 2023 at 11:49:03PM +, Joseph Myers wrote: > > > > While filing a clang request to return 18 on _BitInts for > > > > __builtin_classify_type instead of -1 they return currently, I've > > > > noticed that we return -1 for vector types.

[PATCH] middle-end, v2: Add new value for vector types for __builtin_classify_type

2023-11-17 Thread Jakub Jelinek
On Thu, Nov 16, 2023 at 11:49:03PM +, Joseph Myers wrote: > > > While filing a clang request to return 18 on _BitInts for > > > __builtin_classify_type instead of -1 they return currently, I've > > > noticed that we return -1 for vector types. I'm not convinced it is a > > > good > > > idea